# MCP Endpoint Info

The MCP endpoint info page gives the connection details for pointing any MCP-compatible AI client at AI Game Developer — the hosted Cloud endpoint at https://ai-game.dev/mcp (Bearer-token authenticated) or your own self-hosted gamedev-mcp-server (Custom mode) — plus per-client config snippets.

_Last updated: 2026-06-17_

## Cloud endpoint

The hosted MCP endpoint is https://ai-game.dev/mcp. Authenticate with a bearer token in the Authorization header. The standard client config is:

```json
{
  "mcpServers": {
    "ai-game-dev": {
      "url": "https://ai-game.dev/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}
```

## Custom (self-hosted)

Run gamedev-mcp-server yourself and point your AI client at your own instance instead of the hosted endpoint. Authentication can be disabled for local development.

## Supported clients

Per-client config snippets are available for Claude Desktop, Cursor, VS Code Copilot, Windsurf, Continue, and other MCP-compatible clients on the HTML page.

---

Source (HTML): https://ai-game.dev/mcp-endpoint-info
