{
  "_comment": "Coppica MCP config. Hosted endpoint = zero install. Replace cpk_YOUR_KEY with a key from Coppica Settings > API Keys. Keep only the block your client supports.",
  "mcpServers": {
    "coppica": {
      "type": "http",
      "url": "https://mcp.coppica.com/mcp",
      "headers": {
        "Authorization": "Bearer cpk_YOUR_KEY"
      }
    }
  },
  "_alternatives": {
    "_comment": "Some clients use a different config shape. Pick the one that matches yours.",
    "claude_code_dotmcp": {
      "mcpServers": {
        "coppica": {
          "type": "http",
          "url": "https://mcp.coppica.com/mcp",
          "headers": { "Authorization": "Bearer cpk_YOUR_KEY" }
        }
      }
    },
    "self_hosted_stdio": {
      "_comment": "Only if you must run the server yourself (air-gapped, privacy policy). Otherwise use the hosted endpoint above.",
      "mcpServers": {
        "coppica": {
          "type": "stdio",
          "command": "node",
          "args": ["/absolute/path/to/coppica-mcp-server/dist/index.js"],
          "env": {
            "COPPICA_API_KEY": "cpk_YOUR_KEY",
            "COPPICA_API_BASE": "https://coppica.com/api/v1"
          }
        }
      }
    }
  }
}
