MCP Server
Active
Apache-2.0
AGS API MCP Server
io.github.AccelByte/ags-api-mcp-server
What is the AGS API MCP server?
Stateless MCP server for AccelByte Gaming Services APIs with OpenAPI integration
How to install AGS API
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"ags-api-mcp-server": {
"url": "https://{studio}-{game}.prod.gamingservices.accelbyte.io/mcp/{studio}-{game}"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ags-api-mcp-server": {
"serverUrl": "https://{studio}-{game}.prod.gamingservices.accelbyte.io/mcp/{studio}-{game}"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"ags-api-mcp-server": {
"type": "http",
"url": "https://{studio}-{game}.prod.gamingservices.accelbyte.io/mcp/{studio}-{game}"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"ags-api-mcp-server": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://{studio}-{game}.prod.gamingservices.accelbyte.io/mcp/{studio}-{game}"
]
}
}
}Claude Code
claude mcp add --transport http ags-api-mcp-server https://{studio}-{game}.prod.gamingservices.accelbyte.io/mcp/{studio}-{game}Related MCP servers
Searchable AccelByte Extend SDK reference (C#, Go, Java, Python) for AI coding assistants
0
View repository →TypeScript
Apache-2.0