Skip to content

Fix remote mcp server url #4207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/use-cases/AI_ML/MCP/01_remote_mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ 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}

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
Expand All @@ -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"
}
}
}
Expand Down