AGS Extend SDK MCP Server
An MCP server to help AI assistants to answer questions and generate AccelByte Extend SDK code more effectively .
Ads
Overview
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. - 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
Installation
claude mcp add --transport http extend-sdk <URL>
Configuration
{
"mcpServers": {
"extend-sdk": {
"type": "http",
"url": "<URL>"
}
}
}Capabilities
- Search Extend SDK symbols
find functions and models across C#, Go, Java, or Python using fuzzy matching by name, tags, or description with `search-symbols`.
- Describe specific symbols
get full details for a symbol by ID, including parameters, fields, imports, return types, example usage, and required permissions with `describe-symbols`.
- Scaffold a new Extend app
invoke the `create-extend-app` prompt to clone a template repository and start from a working sample in your chosen language.
Tags
- development
- coding-agent
- ai-agent
Related MCP servers
Context7 MCP
OfficialOfficial Context7 MCP server that brings up-to-date, version-specific library documentation and code examples into AI coding prompts.
Chrome DevTools MCP
OfficialOfficial Chrome DevTools MCP server for controlling and inspecting a live Chrome browser from coding agents such as Gemini, Claude, Cursor, and Copilot.
Mastra/mcp
OfficialClient implementation for Mastra, providing seamless integration with MCP-compatible AI models and tools.
GitHub MCP Server
OfficialConnect your AI assistant to GitHub repositories, issues, pull requests, and search.