AGS Extend SDK MCP Server

AGS Extend SDK MCP Server

Provides AI coding assistants with access to AccelByte Gaming Services (AGS) Extend SDK functions and models through searchable symbols and detailed documentation. Helps generate SDK code by exposing context about available functions, models, and templates for creating Extend app projects across multiple languages (Go, C#, Java, Python).

Category
访问服务器

README

AGS Extend SDK MCP Server

This Model Context Protocol (MCP) server exposes Extend SDK functions and models as additional context to language models. It helps AI coding assistants and other MCP clients to answer questions and generate Extend SDK code by providing the following tools.

  • search-symbols – Search for symbols (functions and models) by name, tags, description (fuzzy)
  • describe-symbols – Get detailed information about specific symbols by their IDs
  • create-extend-app – Prompt template for creating Extend app projects

Quickstart

Prerequisites

[!NOTE] The instructions below can be adapted for other MCP clients as well e.g. Claude Desktop, Gemini CLI, and Visual Studio Code.

Alternative 1: Using STDIO transport (default)

  1. Pull the AGS Extend SDK MCP Server container image. For example, with image tag 2026.1.0.

    docker pull ghcr.io/accelbyte/ags-extend-sdk-mcp-server:2026.1.0
    
  2. Switch to your project directory and create .cursor/mcp.json with the following content.

    {
      "mcpServers": {
        "extend-sdk-mcp-server": {
          "command": "docker",
          "args": [
            "run",
            "-i",
            "--rm",
            "-e",
            "CONFIG_DIR",
            "ghcr.io/accelbyte/ags-extend-sdk-mcp-server:2026.1.0"
          ],
          "env": {
            "CONFIG_DIR": "config/go"
          }
        }
      }
    }
    

    The CONFIG_DIR value above is for Go Extend SDK. For other Extend SDK languages, see here.

  3. Open your project directory in Cursor and open File > Preferences > Cursor Settings, In Cursor Settings, click MCP, and make sure extend-sdk-mcp-server is enabled.

Alternative 2: Using Streamable HTTP transport

  1. Pull the AGS Extend SDK MCP Server container image. For example, with image tag 2026.1.0.

    docker pull ghcr.io/accelbyte/ags-extend-sdk-mcp-server:2026.1.0
    
  2. Start the MCP server with streamable HTTP transport.

    docker run -p 3000:3000 \
      -e TRANSPORT=http \
      -e PORT=3000 \
      -e CONFIG_DIR=config/go \
      -e NODE_ENV=production \
      -e LOG_LEVEL=info \
      ghcr.io/accelbyte/ags-extend-sdk-mcp-server:2026.1.0
    

    The CONFIG_DIR value above is for Go Extend SDK. For other Extend SDK languages, see here.

  3. Switch to your project directory and create .cursor/mcp.json with the following content.

    {
      "mcpServers": {
        "extend-sdk-mcp-server": {
          "url": "http://localhost:3000/"
        }
      }
    }
    
  4. Open your project directory in Cursor and open File > Preferences > Cursor Settings, In Cursor Settings, click MCP, and make sure extend-sdk-mcp-server is enabled.

[!IMPORTANT] Use the ghcr.io/accelbyte/ags-extend-sdk-mcp-server image tag that matches your AGS version. See the available image tags here.

Sample prompts

In Cursor, press CTRL+L and try the following prompts. You should see that the tools provided by this MCP server are used. Give permission to execute the tools when requested.

  • Search symbols: Search for symbols related to 'user'
  • Get symbol details: Describe the 'AdminCreateUser@iam' and 'User@iam' symbols

[!TIP] When coding using this MCP server, we recommend to start from an Extend SDK getting started sample project or an Extend app template project instead of a blank project. Add the necessary context, such as specific source code files, to help getting better results.

Environment Variables

  • TRANSPORT: The MCP server transport (valid values: stdio, http, streamableHttp, default: stdio)
  • PORT: HTTP server port if TRANSPORT is http (default: 3000)
  • CONFIG_DIR: Directory of YAML config files (recursive, default: config/go)
    • For Extend SDK C#: config/csharp
    • For Extend SDK Go: config/go
    • For Extend SDK Java: config/java
    • For Extend SDK Python: config/python
  • LOG_LEVEL: Logging level (valid values: debug, info, warn, error, default: info)
  • ALLOWED_ORIGINS: Comma-separated list of allowed origins for HTTP transport (optional)
  • NODE_ENV: Environment (valid values: development, production) (optional, used by Express for HTTP transport)

Development

Prerequisites

  • Bash
  • Curl
  • Docker
  • Makefile
  • Node.js 18+
  • pnpm

Install dependencies

pnpm install

Start the MCP server for development

With the default STDIO transport

pnpm dev

With streamable HTTP transport

TRANSPORT=http pnpm dev 

Build the MCP server

pnpm build

Start the MCP server after build

With the default STDIO transport

pnpm start

With streamable HTTP transport

TRANSPORT=http pnpm start

Build the MCP server container image

docker build -t extend-sdk-mcp-server:latest .

Release

Push the MCP server container image to container registry

# Setup variables

GHCR_USERNAME=<your-username>
GHCR_PASSWORD=<your-password>
IMAGE_TAG=2026.1.0    # Matches AGS release, bump patch version for hotfix

# Prepare builder

docker buildx inspect extend-sdk-mcp-server-builder || docker buildx create --name extend-sdk-mcp-server-builder --use

# Login, build, and push multiarch image

docker login --username ${GHCR_USERNAME --password $GHCR_PASSWORD}
docker buildx build -t ghcr.io/accelbyte/ags-extend-sdk-mcp-server:${IMAGE_TAG} --platform linux/amd64,linux/arm64 --push .

# Clean up builder

docker buildx rm --keep-state extend-sdk-mcp-server-builder

Testing

  1. Start the MCP server with HTTP transport.

  2. Initialize the MCP connection.

    curl -N -H "Accept: application/json, text/event-stream" \
        -H "Content-Type: application/json" \
        -X POST \
        -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test-client","version":"1.0.0"}}}' \
        http://localhost:3000/
    
  3. List available tools.

    curl -N -H "Accept: application/json, text/event-stream" \
        -H "Content-Type: application/json" \
        -X POST \
        -d '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' \
        http://localhost:3000/
    
  4. Test the search tool.

    curl -N -H "Accept: application/json, text/event-stream" \
        -H "Content-Type: application/json" \
        -X POST \
        -d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"search-symbols","arguments":{"query":"user"}}}' \
        http://localhost:3000/
    
  5. Test describe model.

    curl -N -H "Accept: application/json, text/event-stream" \
        -H "Content-Type: application/json" \
        -X POST \
        -d '{"jsonrpc":"2.0","id":4,"method":"tools/call","params":{"name":"describe-symbols","arguments":{"ids":["User@iam"]}}}' \
        http://localhost:3000/
    

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选