From d8c5fd7fc1a21d307a95a6911d64bf26542011d9 Mon Sep 17 00:00:00 2001 From: Pete Hampton Date: Fri, 1 Aug 2025 15:48:54 +0100 Subject: [PATCH] Fix remote mcp server url --- docs/use-cases/AI_ML/MCP/01_remote_mcp.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/use-cases/AI_ML/MCP/01_remote_mcp.md b/docs/use-cases/AI_ML/MCP/01_remote_mcp.md index 3daa321eb57..0f510c8ccd6 100644 --- a/docs/use-cases/AI_ML/MCP/01_remote_mcp.md +++ b/docs/use-cases/AI_ML/MCP/01_remote_mcp.md @@ -43,7 +43,7 @@ Join the waitlist by filling out the form at [clickhouse.ai](https://www.clickho 2. Copy the URL of the ClickHouse Cloud MCP Server from the `Connect` view or below ```bash -https://mcp.clickhouse.com/mcp +https://mcp.clickhouse.cloud/mcp ``` ## Add the ClickHouse MCP Server in Claude Code {#add-clickhouse-mcp-server-claude-code} @@ -51,7 +51,7 @@ https://mcp.clickhouse.com/mcp 1. In your working directory, run the following command to add the ClickHouse Cloud MCP Server configuration to Claude Code. In this example, we named the MCP server in the Claude Code config `clickhouse_cloud` ```bash -claude mcp add --transport http clickhouse_cloud https://mcp.clickhouse.com/mcp +claude mcp add --transport http clickhouse_cloud https://mcp.clickhouse.cloud/mcp ``` 1b. Depending on the MCP Client used, you can also edit the JSON config directly @@ -60,7 +60,7 @@ claude mcp add --transport http clickhouse_cloud https://mcp.clickhouse.com/mcp { "mcpServers": { "clickhouse-remote": { - "url": "https://mcp.clickhouse.com/mcp" + "url": "https://mcp.clickhouse.cloud/mcp" } } }