Searchable AccelByte Extend SDK reference (C#, Go, Java, Python) for AI coding assistants
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
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.
create-extend-app promptIt 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.
Paste this into your AI coding assistant β it will fetch the install guide, ask you a couple of questions, and configure everything for you:
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).
Prefer to do it yourself? See Manual Install below.
The MCP URL is the hosted server's base URL followed by /extend-mcp/{language}:
| Language | URL 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./extend-mcp/python β /extend-mcp/go). Requesting an unknown language returns HTTP 400./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.
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 vianpx, so you need Node.js 18+ withnpxavailable β verify withnpx --version. No global install required.
Substitute your URL from Step 1 wherever you see <URL> below.
.vscode/mcp.json in your workspace (or user settings.json):
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/mcp.json in your workspace (or user settings):
If your client can't reach an HTTP server, swap to: { "command": "npx", "args": ["-y", "mcp-remote", "<URL>"] }.
See the Cursor MCP documentation.
Fallback (stdio-only environments): claude mcp add extend-sdk -- npx -y mcp-remote <URL>.
See the Claude Code MCP documentation.
mcp_config.json in your project root:
If your client can't reach an HTTP server, swap to: { "command": "npx", "args": ["-y", "mcp-remote", "<URL>"] }.
See the Antigravity MCP documentation.
Fallback (stdio-only environments): gemini mcp add extend-sdk -- npx -y mcp-remote <URL>.
See the Gemini CLI MCP documentation.
Option A β Custom Connector (recommended)
extend-sdk and Remote MCP server URL: your <URL> from Step 1.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:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonRestart Claude Desktop after saving.
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-symbolsSearch 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-symbolsGet full details for specific symbols by ID β fields, parameters, imports, example usage, return type, and required permissions.
"Describe the
AdminCreateUser@iamandUser@iamsymbols"
create-extend-appA 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-appprompt 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.
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.
400Check 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.
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).
Confirm the <mcp-server-host> and full URL are correct (ask your AccelByte administrator), and that your network can reach it.
search-symbols and describe-symbolsThis repository is published as-is. For bug reports and questions, please open an issue.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/ags-extend-sdk-mcp-server)<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>