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.

You don't need the MCP server to use Godmode. Your skills install fine via the dashboard's DOWNLOAD button. Extract the zip, drop it into ~/.claude/skills/<slug>/, done. The MCP server is a convenience layer that lets you browse the catalogue and install skills from inside a Claude Code session, without leaving the chat.

1. Generate your token

Sign in at /account.html, click the Account tab, find the // mcp_access card, and click Generate new token. The token is shown once, copy it immediately. 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