Godmode MCP Server

One npm package wires Godmode into Claude Code, Claude Desktop, or any other MCP-aware client. Browse products, install skills, and manage your account without leaving your AI client.

1. Generate your token

Head to your account page, scroll to MCP Access, and click Reveal token. The token is shown once — copy it somewhere safe. You can rotate it at any time.

Free tier: no token needed for godmode_list_products, godmode_get_product, godmode_open_pricing, or godmode_install_lite. Paid skills require a token tied to an active purchase.

2. Register the server

Claude Code (macOS / Linux / Windows WSL):

claude mcp add --transport stdio \
  --env GODMODE_MCP_TOKEN=<your-token> \
  godmode -- npx -y godmode-mcp@0.1.0

Claude Code (Windows native, cmd.exe wrapper):

claude mcp add --transport stdio \
  --env GODMODE_MCP_TOKEN=<your-token> \
  godmode -- cmd /c npx -y godmode-mcp@0.1.0

Claude Desktop — add to claude_desktop_config.json:

{
  "mcpServers": {
    "godmode": {
      "command": "npx",
      "args": ["-y", "godmode-mcp@0.1.0"],
      "env": {
        "GODMODE_MCP_TOKEN": "<your-token>"
      }
    }
  }
}

3. Use it

From any Claude session with the server connected:

Tools

ToolAuthPurpose
godmode_list_products List the full catalogue.
godmode_get_product Full details for one slug.
godmode_open_pricing Return pricing URL to open in browser.
godmode_install_lite Install the free Lite skill.
godmode_list_owned_skills Token Your purchases.
godmode_install_skill Token for paid Verify entitlement, download, install.

Install safety

Troubleshooting

Links