For AI agents

MCP Server & Agent Skill

Connect God Mode AI to Claude, Cursor, ChatGPT, and other agents. Generate 2D game sprite sheets and animations, and remove sprite backgrounds — using the same API token and credits as the REST API.

Remote MCP server (Streamable HTTP)
Add our hosted MCP server so agents can call God Mode AI as tools. No install, no server to run. Claude.ai uses OAuth (sign in with your God Mode AI account). Cursor and Claude Code can use OAuth or an API token.

Server URL

https://www.godmodeai.co/api/mcp

Claude.ai / Claude Desktop

  1. Open Settings → Connectors → Add custom connector
  2. URL: https://www.godmodeai.co/api/mcp (include www)
  3. Click Connect, sign in to God Mode AI, and click Allow

Do not paste an API token into Claude.ai. It uses OAuth. Leave the OAuth client ID/secret fields empty.

Client config (Cursor / Claude Code with an API token)

{
  "mcpServers": {
    "godmodeai": {
      "url": "https://www.godmodeai.co/api/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_TOKEN" }
    }
  }
}

stdio-only clients (via mcp-remote)

{
  "mcpServers": {
    "godmodeai": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://www.godmodeai.co/api/mcp", "--header", "Authorization: Bearer YOUR_API_TOKEN"]
    }
  }
}

Available tools

list_actionslist_modelsupload_imagegenerate_spriteget_sprite_resultremove_backgroundget_bg_removal_resultupscale_animationget_upscale_result
Published in the official MCP Registry as co.godmodeai/sprites. MCP Registry
Agent Skill (SKILL.md)
The godmodeai-sprites skill teaches Claude and other agents how to pick a valid action + camera view, upload an image, and run the async generation flow. Works standalone against the REST API, or alongside the MCP server above.

Install with the skills CLI

npx skills add lyogavin/godmodeai-sprites-skill

Claude.ai & the API

Download the .skill package and upload it as a custom skill.

Manual / self-hosted agents

Clone the repo into your agent's skills directory. Full instructions in the README.

Prefer to call the API directly?

MCP and the skill are built on our REST API. See the full endpoint reference, examples, and create your token.

REST API docs
    MCP Server & Agent Skill for Game Sprites | God Mode AI | God Mode AI