ags-extend-sdk-mcp-server
Verified Safeby AccelByte
Overview
Exposes AccelByte Extend SDK functions and models as contextual information to language models, enabling AI coding assistants to generate code and answer related questions.
Installation
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.0Environment Variables
- TRANSPORT
- PORT
- CONFIG_DIR
- NODE_ENV
- LOG_LEVEL
Security Notes
The server employs several good security practices for an HTTP server, including 'helmet' for security headers, configurable CORS (defaulting to same-origin), 'express-rate-limit' to prevent abuse, and request body size limits ('10mb'). Session IDs are generated using 'randomUUID()', and DNS rebinding protection is enabled. File access for loading symbols explicitly checks paths to prevent directory traversal. No direct 'eval()' calls or obvious hardcoded secrets were found in the provided code snippets.
Similar Servers
mcp-typescript-sdk
The TypeScript SDK facilitates the implementation of Model Context Protocol (MCP) over MQTT for creating AI-integrable servers and clients, enabling LLMs to discover and interact with external services and tools.
context-engine
Provides an agent-agnostic local context engine via Model Context Protocol (MCP) for coding agents, enabling semantic search, planning, code review, and prompt enhancement with AI integration.
mcp-execution
Transforms any Model Context Protocol (MCP) server into executable, type-safe TypeScript tools for AI agents, enabling progressive loading and achieving significant token savings.
mcp
An MCP server providing a set of mathematical tools (calculator functions) for remote execution via the Model Context Protocol.