From 050b8c31f3e55d90504cf76b5bdef629c9dbb726 Mon Sep 17 00:00:00 2001 From: Satya Patel Date: Mon, 26 Jan 2026 19:23:26 -0800 Subject: [PATCH] chore: update .mcp.json to use production MCP server Change MCP server URLs from localhost to api.superset.sh for production use. --- .mcp.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.mcp.json b/.mcp.json index ba029a2f9f6..03b7976cc3f 100644 --- a/.mcp.json +++ b/.mcp.json @@ -2,11 +2,11 @@ "mcpServers": { "superset": { "type": "http", - "url": "http://localhost:3001/api/agent/mcp", + "url": "https://api.superset.sh/api/agent/mcp", "oauth": { "clientId": "claude-code", - "authorizationUrl": "http://localhost:3001/api/auth/mcp/authorize", - "tokenUrl": "http://localhost:3001/api/auth/mcp/token", + "authorizationUrl": "https://api.superset.sh/api/auth/mcp/authorize", + "tokenUrl": "https://api.superset.sh/api/auth/mcp/token", "scopes": ["openid", "profile", "email"] } }