Docs · Endpoint

The MCP endpoint —
one URL, twelve clients.

Point any MCP-compatible AI client at https://ai-game.dev/mcp, drop in your personal token, and start driving Unity with natural language. Tools, prompts, and resources are negotiated on connect — no client-side schema needed.

Endpoint URL
https://ai-game.dev/mcp
Transport
Streamable HTTPSSE
Auth
Bearer token
Protocol
MCP 2025-06-18

Request anatomy

Every request is a JSON-RPC 2.0 envelope. The Authorization header carries your personal bearer token. The endpoint streams responses as Server-Sent Events when the response payload is large or progressive.

curl -N -X POST "https://ai-game.dev/mcp" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/list",
    "params": {}
  }'
AuthorizationBearer YOUR_TOKENFrom /app/api-keys
Acceptapplication/json, text/event-streamRequired for SSE upgrade
Content-Typeapplication/jsonJSON-RPC body
Body.method"tools/list" | "tools/call" | "initialize" | …Standard MCP methods

Rate limits & quotas

Free
Tokens / week
100K
Tools / minute
30
Support
Community
Max
Tokens / week
20M
Tools / minute
300
Support
Direct DM

Exact figures vary by plan and reset on rolling 5-hour + weekly windows. Live numbers live in your account usage.

Connect your client

Pick your AI client below and copy the config snippet. Anything that speaks MCP works — 12 of the most popular are pre-wired.

{
  "mcpServers": {
    "ai-game-dev": {
      "url": "https://ai-game.dev/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}
Endpoint live. /api/status reports current health; subscribe via SSE for real-time updates.