{
  "$comment": "Capability card for the Godmode MCP server. This describes a Model Context Protocol (MCP) server reachable over stdio via npx, NOT a live A2A JSON-RPC HTTP endpoint. Godmode does not run an A2A agent server; the connection block below states the real transport. Field shape borrows from the A2A Agent Card and well-known-agent-manifest conventions so agent tooling can parse it. Human summary: /llms.txt. Full reference: /llms-full.txt. Machine catalog: /products.json.",
  "schemaVersion": "0.1",
  "name": "Godmode",
  "description": "Execution-protocol skills for Claude Code, Anthropic's CLI coding agent. The MCP server lets an agent browse the Godmode product catalog, fetch product detail, open pricing, and install the free Godmode Lite skill; authenticated tools list and install purchased skills. Not affiliated with Anthropic.",
  "version": "0.1.0",
  "url": "https://getgodmode.dev",
  "documentationUrl": "https://getgodmode.dev/mcp-setup.html",
  "iconUrl": "https://getgodmode.dev/favicon.svg",
  "provider": {
    "organization": "Godmode",
    "url": "https://getgodmode.dev",
    "contact": "support@getgodmode.dev"
  },
  "connection": {
    "protocol": "mcp",
    "transport": "stdio",
    "npm_package": "godmode-mcp",
    "install": "claude mcp add --transport stdio godmode -- npx -y godmode-mcp@0.1.0",
    "setup_guide": "https://getgodmode.dev/mcp-setup.html",
    "note": "This is an MCP server invoked locally over stdio. There is no remote A2A JSON-RPC endpoint; do not attempt to POST tasks to a URL."
  },
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false
  },
  "authentication": {
    "schemes": ["bearer-token"],
    "note": "Anonymous tools need no auth. Authenticated tools need GODMODE_MCP_TOKEN (a purchaser access token). The token is read once then removed from the process environment so spawned children cannot inherit it. Security detail: https://getgodmode.dev/security.html"
  },
  "defaultInputModes": ["application/json"],
  "defaultOutputModes": ["application/json"],
  "dataSafety": {
    "transmits": "An action plus arguments to one Supabase Edge Function; downloads only from getgodmode.dev (host-allowlisted, https-only), each SHA-256-verified against the catalog-pinned hash before extraction.",
    "never_transmits": ["source code", "file contents", "file paths", "prompts"],
    "telemetry": "off unless explicitly opted in",
    "disclosure": "https://getgodmode.dev/security.html"
  },
  "skills": [
    {
      "id": "godmode_list_products",
      "name": "List products",
      "description": "Return the full Godmode product catalog with prices, tiers, and Stripe checkout URLs.",
      "auth_required": false,
      "tags": ["catalog", "pricing", "read-only"],
      "examples": ["What does Godmode cost?", "List every Godmode product and price."]
    },
    {
      "id": "godmode_get_product",
      "name": "Get product detail",
      "description": "Return full detail for a single product by id (description, prices, checkout, fit, requirements).",
      "auth_required": false,
      "tags": ["catalog", "read-only"],
      "examples": ["Tell me about Godmode+.", "What's included in the Ultimate Bundle?"]
    },
    {
      "id": "godmode_open_pricing",
      "name": "Open pricing",
      "description": "Return the pricing page URL (and relevant anchor) for a product or the full pricing page.",
      "auth_required": false,
      "tags": ["pricing", "navigation", "read-only"],
      "examples": ["Open the pricing page.", "Show me the Evolution pricing."]
    },
    {
      "id": "godmode_install_lite",
      "name": "Install Godmode Lite (free)",
      "description": "Download and install the free Godmode Lite skill into the Claude Code skills directory. No purchase or token required.",
      "auth_required": false,
      "tags": ["install", "free"],
      "examples": ["Install the free Godmode tier.", "Set up Godmode Lite for me."]
    },
    {
      "id": "godmode_list_owned_skills",
      "name": "List owned skills",
      "description": "List the Godmode skills the authenticated user has purchased and can install.",
      "auth_required": true,
      "tags": ["account", "read-only"],
      "examples": ["Which Godmode skills do I own?"]
    },
    {
      "id": "godmode_install_skill",
      "name": "Install a purchased skill",
      "description": "Download and install a purchased Godmode skill into the Claude Code skills directory. Requires a valid purchaser token; the download is SHA-256-verified against the catalog pin before extraction.",
      "auth_required": true,
      "tags": ["install", "account"],
      "examples": ["Install Godmode+ that I bought.", "Set up my Evolution skill."]
    }
  ],
  "catalog_scope": "The MCP tools cover installable skills only. Services (Easy Prompt, Evo-Loop) and the Ultimate Bundle are listed in /products.json and on /pricing.html.",
  "related": {
    "llms_txt": "https://getgodmode.dev/llms.txt",
    "llms_full_txt": "https://getgodmode.dev/llms-full.txt",
    "products_json": "https://getgodmode.dev/products.json",
    "security": "https://getgodmode.dev/security.html"
  }
}
