Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Ags Extend Sdk Mcp Server
A
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:44:57 PM

Ags Extend Sdk Mcp Server

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Searchable AccelByte Extend SDK reference (C#, Go, Java, Python) for AI coding assistants

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "ags-extend-sdk-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "ags-extend-sdk-mcp-server"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

AGS Extend SDK MCP Server

A Model Context Protocol (MCP) server that gives AI assistants (VS Code Copilot, Cursor, Claude, Gemini, Antigravity) the AccelByte Extend SDK as additional context β€” so they can answer questions about the SDK and generate correct Extend SDK code.

What It Does

  • Search Extend SDK symbols (functions and models) by name, tags, or description (fuzzy matching)
  • Describe specific symbols β€” parameters, fields, imports, examples, return types, required permissions
  • Scaffold a new Extend app from a template repository via the create-extend-app prompt

It serves SDK reference for four languages β€” C#, Go, Java, and Python. You pick the language per connection through the URL path (see Choose your language).

AccelByte hosts the Extend SDK MCP Server for you β€” you don't need to install or run anything locally. Just point your AI assistant at the hosted MCP URL for your language. There's no sign-in: the server only exposes read-only SDK reference data. Prefer to run it yourself? See Running Locally & Self-Hosting.


Quick Install

Paste this into your AI coding assistant β€” it will fetch the install guide, ask you a couple of questions, and configure everything for you:

Code
Install the AGS Extend SDK MCP server for me. Fetch and follow the instructions at
https://raw.githubusercontent.com/AccelByte/ags-extend-sdk-mcp-server/refs/heads/master/INSTALL.md

Works in VS Code Copilot, Cursor, Claude Code, Antigravity, and Gemini CLI.

Claude Desktop users: The simplest path is Settings β†’ Connectors β†’ Add custom connector (Name: extend-sdk, URL: your MCP URL) β€” no AI installer needed. See Claude Desktop below.

If you want to use the Quick Install prompt above, switch to the Code tab first (Chat and Cowork can't edit your config file).

Claude Desktop β€” Code tab

Prefer to do it yourself? See Manual Install below.


Manual Install

Step 1: Choose your language and get your URL

The MCP URL is the hosted server's base URL followed by /extend-mcp/{language}:

Code
https://<mcp-server-host>/extend-mcp/{language}
LanguageURL path
C#/extend-mcp/csharp
Go/extend-mcp/go
Java/extend-mcp/java
Python/extend-mcp/python
  • <mcp-server-host> is the host of your organization's deployment β€” ask your AccelByte administrator if you're not sure.
  • One hosted instance serves every language. To switch language later, just change the trailing path segment (e.g. /extend-mcp/python β†’ /extend-mcp/go). Requesting an unknown language returns HTTP 400.
  • The base path (/extend-mcp) with no language serves the server's configured default language.

No hosted instance? You can run the server yourself with Docker β€” see Running Locally & Self-Hosting.

Step 2: Configure your client

The server uses Streamable HTTP transport. Clients that support HTTP transport connect to the URL directly. Clients that only support stdio transport use mcp-remote as a bridge.

Need mcp-remote? It runs via npx, so you need Node.js 18+ with npx available β€” verify with npx --version. No global install required.

Substitute your URL from Step 1 wherever you see <URL> below.

Visual Studio Code (Copilot)

.vscode/mcp.json in your workspace (or user settings.json):

config.json
{
  "servers": {
    "extend-sdk": {
      "type": "http",
      "url": "<URL>"
    }
  }
}

If your client can't reach an HTTP server, swap to: { "command": "npx", "args": ["-y", "mcp-remote", "<URL>"] }.

See the VS Code MCP documentation.

Cursor

.cursor/mcp.json in your workspace (or user settings):

config.json
{
  "mcpServers": {
    "extend-sdk": {
      "type": "http",
      "url": "<URL>"
    }
  }
}

If your client can't reach an HTTP server, swap to: { "command": "npx", "args": ["-y", "mcp-remote", "<URL>"] }.

See the Cursor MCP documentation.

Claude Code

Terminal
claude mcp add --transport http extend-sdk <URL>

Fallback (stdio-only environments): claude mcp add extend-sdk -- npx -y mcp-remote <URL>.

See the Claude Code MCP documentation.

Antigravity

mcp_config.json in your project root:

config.json
{
  "mcpServers": {
    "extend-sdk": {
      "type": "http",
      "url": "<URL>"
    }
  }
}

If your client can't reach an HTTP server, swap to: { "command": "npx", "args": ["-y", "mcp-remote", "<URL>"] }.

See the Antigravity MCP documentation.

Gemini CLI

bash
gemini mcp add --transport http extend-sdk <URL>

Fallback (stdio-only environments): gemini mcp add extend-sdk -- npx -y mcp-remote <URL>.

See the Gemini CLI MCP documentation.

Claude Desktop

Option A β€” Custom Connector (recommended)

  1. Open Settings β†’ Connectors β†’ Add custom connector (under the "Customize" area).
  2. Fill in Name: extend-sdk and Remote MCP server URL: your <URL> from Step 1.
  3. Save.

Don't see "Add custom connector"? Some Team and Enterprise plans disable custom connectors via workspace policy. If the option is missing or greyed out, use Option B.

Option B β€” mcp-remote config file (fallback)

Edit claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
config.json
{
  "mcpServers": {
    "extend-sdk": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "<URL>"]
    }
  }
}

Restart Claude Desktop after saving.


Using the Tools

Once connected, your assistant has access to these tools. In your assistant's chat, try the example prompts below β€” give permission to run the tools when requested.

search-symbols

Search Extend SDK symbols by name, tags, or description, with fuzzy matching. Returns a paginated list of summaries.

"Search for symbols related to user" Β· "Find symbols for inventory"

describe-symbols

Get full details for specific symbols by ID β€” fields, parameters, imports, example usage, return type, and required permissions.

"Describe the AdminCreateUser@iam and User@iam symbols"

create-extend-app

A prompt template that clones an Extend app template repository and opens it (in a Dev Container when available) so you can start from a working sample.

Invoke the create-extend-app prompt and follow the scenario / template / language completions.

[!TIP] When coding with this MCP server, start from an Extend SDK getting-started sample or an Extend app template instead of a blank project, and add relevant source files as context for better results.


Running it yourself

Prefer to run the server locally (stdio) or host the HTTP server yourself? See Running Locally & Self-Hosting for Docker usage, environment variables, HTTP endpoints, smoke tests, developing from source, and releasing the image.


Troubleshooting

Tool calls fail / the server returns 400

Check the language in your URL path. It must be one of csharp, go, java, or python (e.g. /extend-mcp/go). An unknown language returns HTTP 400.

Client can't connect to the HTTP URL

Some clients only support stdio transport. Switch that client to the mcp-remote bridge config shown in Step 2. It needs Node.js 18+ with npx available (npx --version).

"Connection refused" or the host is unreachable

Confirm the <mcp-server-host> and full URL are correct (ask your AccelByte administrator), and that your network can reach it.


Documentation

  • Installation Guide β€” followed by the Quick Install prompt; readable on its own
  • Running Locally & Self-Hosting β€” Docker, environment variables, HTTP endpoints, development, and releasing the image
  • Postman Collection β€” import and Newman smoke-test instructions for search-symbols and describe-symbols

Contributions

This repository is published as-is. For bug reports and questions, please open an issue.

Related MCP Servers

View all in Developer Tools View all alternatives
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • Shadcn Ui Mcp Server logoShadcn Ui Mcp Server

    MCP server that gives AI assistants seamless access to shadcn/ui v4 components, blocks, demos, and metadata.

    πŸ’» Developer Tools2 views
    Compare vs Shadcn Ui Mcp Server β†’
  • W
    Windows MCP

    An MCP Server for computer-use in Windows OS

    πŸ’» Developer Tools1 views
    Compare vs Windows MCP β†’

Frequently Asked Questions about Ags Extend Sdk Mcp Server

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "ags-extend-sdk-mcp-server": { "command": "npx", "args": ["-y", "ags-extend-sdk-mcp-server"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewAgs Extend Sdk Mcp Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/ags-extend-sdk-mcp-server?style=directory)](https://allmcps.com/mcp/ags-extend-sdk-mcp-server)
HTML Embed
<a href="https://allmcps.com/mcp/ags-extend-sdk-mcp-server"><img src="https://allmcps.com/api/badge/ags-extend-sdk-mcp-server?style=directory" alt="Ags Extend Sdk Mcp Server on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimePython
0/5 checks healthy over the last 8h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Ags Extend Sdk Mcp Server β†’Install in Claude DesktopInstall in CursorInstall in VS Code