docs(mcp): prefer the latest MCP server (#14077)

This commit is contained in:
Harshal Sheth 2025-07-16 05:23:00 -07:00 committed by GitHub
parent b1c3d33235
commit 7d2df4a63b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,9 +36,9 @@ The managed MCP server endpoint is only available with DataHub Cloud v0.3.12+. F
:::
:::note
:::note Streamable HTTP Only
There are two [transports types](https://modelcontextprotocol.io/docs/concepts/transports) for remote MCP servers: streamable HTTP and server-sent events (SSE). DataHub only supports the newer streamable HTTP transport. SSE has been deprecated in favor of streamable HTTP, but some older MCP clients may still only support SSE. For those cases, you'll need to use something like [mcp-remote](https://github.com/geelen/mcp-remote) to bridge the gap.
There are two [transports types](https://modelcontextprotocol.io/docs/concepts/transports) for remote MCP servers: streamable HTTP and server-sent events (SSE). SSE has been deprecated in favor of streamable HTTP, so DataHub only supports the newer streamable HTTP transport. Some older MCP clients (e.g. chatgpt.com) may still only support SSE. For those cases, you'll need to use something like [mcp-remote](https://github.com/geelen/mcp-remote) to bridge the gap.
:::
@ -145,7 +145,7 @@ You can run the [open-source MCP server](https://github.com/acryldata/mcp-server
"mcpServers": {
"datahub": {
"command": "<full-path-to-uvx>", // e.g. /Users/hsheth/.local/bin/uvx
"args": ["mcp-server-datahub"],
"args": ["mcp-server-datahub@latest"],
"env": {
"DATAHUB_GMS_URL": "<your-datahub-url>",
"DATAHUB_GMS_TOKEN": "<your-datahub-token>"
@ -168,7 +168,7 @@ You can run the [open-source MCP server](https://github.com/acryldata/mcp-server
"mcpServers": {
"datahub": {
"command": "uvx",
"args": ["mcp-server-datahub"],
"args": ["mcp-server-datahub@latest"],
"env": {
"DATAHUB_GMS_URL": "<your-datahub-url>",
"DATAHUB_GMS_TOKEN": "<your-datahub-token>"
@ -188,7 +188,7 @@ You can run the [open-source MCP server](https://github.com/acryldata/mcp-server
For other AI tools, you'll typically need to provide the following configuration:
- Command: `uvx`
- Args: `mcp-server-datahub`
- Args: `mcp-server-datahub@latest`
- Env:
- `DATAHUB_GMS_URL`: `<your-datahub-url>`
- `DATAHUB_GMS_TOKEN`: `<your-datahub-token>`