From 6c990cd4415610a894914b365c13becbac3334ca Mon Sep 17 00:00:00 2001
From: bifangknt <1320414964@qq.com>
Date: Fri, 22 Aug 2025 10:38:47 +0800
Subject: [PATCH 1/7] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E4=B8=AD?=
=?UTF-8?q?=E6=96=87=E6=96=87=E6=A1=A3=E5=86=85=E5=AE=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/README.zh-CN.md | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index b81f5c8..68a3652 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -1,3 +1,5 @@
+
+
# Context7 MCP - 为所有 Prompt 获取最新文档
[](https://context7.com) [](https://smithery.ai/server/@upstash/context7-mcp)
@@ -196,7 +198,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
-Install in Cline
+在 Cline 中安装
您可以通过以下步骤轻松地通过 [Cline MCP Server 市场](https://cline.bot/mcp-marketplace) 安装 Context7:
@@ -209,7 +211,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
-Install in Zed
+在 Zed 中安装
它可以通过 [Zed Extensions](https://zed.dev/extensions?query=Context7) 安装,或者您也可以将以下内容添加到您的 Zed `settings.json` 中。更多信息请参见 [Zed Context Server 文档](https://zed.dev/docs/assistant/context-servers)。
From 03dc0702fd598cf4c556e9b104e84328f924842b Mon Sep 17 00:00:00 2001
From: bifangknt <1320414964@qq.com>
Date: Fri, 22 Aug 2025 16:59:42 +0800
Subject: [PATCH 2/7] =?UTF-8?q?docs:=20=E4=B8=AD=E6=96=87=E6=96=87?=
=?UTF-8?q?=E6=A1=A3=E5=90=8C=E6=AD=A5=E4=B8=BB=E6=96=87=E6=A1=A3=E5=86=85?=
=?UTF-8?q?=E5=AE=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/README.zh-CN.md | 98 ++++++++++++++++++++++++++++----------------
1 file changed, 62 insertions(+), 36 deletions(-)
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index 68a3652..9360ad3 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -48,6 +48,7 @@ Context7将最新的代码示例和文档直接获取到你的LLM上下文中。
- Node.js >= v18.0.0
- Cursor, Claude Code, VSCode, Windsurf 或其他MCP客户端
+- Context7 API密钥(可选,用于更高的请求速率限制)(通过在[context7.com/dashboard](https://context7.com/dashboard)创建账户获取)
通过 Smithery 安装
@@ -79,7 +80,10 @@ npx -y @smithery/cli@latest install @upstash/context7-mcp --client
{
"mcpServers": {
"context7": {
- "url": "https://mcp.context7.com/mcp"
+ "url": "https://mcp.context7.com/mcp",
+ "headers": {
+ "CONTEXT7_API_KEY": "YOUR_API_KEY"
+ }
}
}
}
@@ -94,7 +98,7 @@ npx -y @smithery/cli@latest install @upstash/context7-mcp --client
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -110,19 +114,19 @@ npx -y @smithery/cli@latest install @upstash/context7-mcp --client
#### Claude Code 远程服务器连接
```sh
-claude mcp add --transport http context7 https://mcp.context7.com/mcp
+claude mcp add --transport http context7 https://mcp.context7.com/mcp --header "CONTEXT7_API_KEY: YOUR_API_KEY"
```
或者使用 SSE 传输:
```sh
-claude mcp add --transport sse context7 https://mcp.context7.com/sse
+claude mcp add --transport sse context7 https://mcp.context7.com/sse --header "CONTEXT7_API_KEY: YOUR_API_KEY"
```
#### Claude Code 本地服务器连接
```sh
-claude mcp add context7 -- npx -y @upstash/context7-mcp
+claude mcp add context7 -- npx -y @upstash/context7-mcp --header "CONTEXT7_API_KEY: YOUR_API_KEY"
```
@@ -138,7 +142,10 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
{
"mcpServers": {
"context7": {
- "serverUrl": "https://mcp.context7.com/mcp"
+ "serverUrl": "https://mcp.context7.com/mcp",
+ "headers": {
+ "CONTEXT7_API_KEY": "YOUR_API_KEY"
+ }
}
}
}
@@ -151,7 +158,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -174,7 +181,10 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
"servers": {
"context7": {
"type": "http",
- "url": "https://mcp.context7.com/mcp"
+ "url": "https://mcp.context7.com/mcp",
+ "headers": {
+ "CONTEXT7_API_KEY": "YOUR_API_KEY"
+ }
}
}
}
@@ -188,7 +198,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
"context7": {
"type": "stdio",
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -221,7 +231,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
"Context7": {
"command": {
"path": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
},
"settings": {}
}
@@ -268,7 +278,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
{
"name": "context7",
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
]
}
@@ -303,7 +313,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -323,7 +333,10 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
{
"mcpServers": {
"context7": {
- "httpUrl": "https://mcp.context7.com/mcp"
+ "httpUrl": "https://mcp.context7.com/mcp",
+ "headers": {
+ "CONTEXT7_API_KEY": "YOUR_API_KEY"
+ }
}
}
}
@@ -336,7 +349,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -362,7 +375,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -382,6 +395,9 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
"context7": {
"type": "remote",
"url": "https://mcp.context7.com/mcp",
+ "headers": {
+ "CONTEXT7_API_KEY": "YOUR_API_KEY"
+ },
"enabled": true
}
}
@@ -394,7 +410,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
"mcp": {
"context7": {
"type": "local",
- "command": ["npx", "-y", "@upstash/context7-mcp"],
+ "command": ["npx", "-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"],
"enabled": true
}
}
@@ -411,7 +427,7 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp
```toml
[mcp_servers.context7]
-args = ["-y", "@upstash/context7-mcp"]
+args = ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
command = "npx"
```
@@ -432,7 +448,7 @@ command = "npx"
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -457,7 +473,7 @@ command = "npx"
"mcpServers": {
"Context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"],
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"],
"env": {},
"disabled": false,
"autoApprove": []
@@ -495,7 +511,7 @@ command = "npx"
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -515,7 +531,7 @@ command = "npx"
"mcpServers": {
"context7": {
"command": "bunx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -618,7 +634,7 @@ command = "npx"
"mcpServers": {
"github.com/upstash/context7-mcp": {
"command": "cmd",
- "args": ["/c", "npx", "-y", "@upstash/context7-mcp"],
+ "args": ["/c", "npx", "-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"],
"disabled": false,
"autoApprove": []
}
@@ -638,7 +654,7 @@ command = "npx"
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -659,7 +675,7 @@ command = "npx"
{
"Context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"],
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"],
"env": {},
"working_directory": null,
"start_on_launch": true
@@ -684,6 +700,9 @@ command = "npx"
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
+ "headers": {
+ "CONTEXT7_API_KEY": "YOUR_API_KEY"
+ },
"tools": ["get-library-docs", "resolve-library-id"]
}
}
@@ -713,7 +732,7 @@ command = "npx"
"mcpServers": {
"Context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -753,7 +772,7 @@ command = "npx"
"context7": {
"type": "stdio",
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -782,7 +801,10 @@ command = "npx"
"mcp": {
"context7": {
"type": "http",
- "url": "https://mcp.context7.com/mcp"
+ "url": "https://mcp.context7.com/mcp",
+ "headers": {
+ "CONTEXT7_API_KEY": "YOUR_API_KEY"
+ }
}
}
}
@@ -796,7 +818,10 @@ command = "npx"
"mcp": {
"context7": {
"type": "sse",
- "url": "https://mcp.context7.com/sse"
+ "url": "https://mcp.context7.com/sse",
+ "headers": {
+ "CONTEXT7_API_KEY": "YOUR_API_KEY"
+ }
}
}
}
@@ -811,7 +836,7 @@ command = "npx"
"context7": {
"type": "stdio",
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -829,7 +854,7 @@ command = "npx"
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -869,7 +894,7 @@ acli rovodev mcp
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -890,7 +915,7 @@ acli rovodev mcp
```json
{
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
```
@@ -916,7 +941,7 @@ acli rovodev mcp
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["-y", "@upstash/context7-mcp"]
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
@@ -950,7 +975,7 @@ acli rovodev mcp
```json
{
- "args": ["-y", "@upstash/context7-mcp"],
+ "args": ["-y", "@upstash/context7-mcp", "--api-key", "YOUR_API_KEY"],
"command": "npx",
"env": {}
}
@@ -1022,6 +1047,7 @@ bun run dist/index.js
- `--transport ` – 使用的传输方式(默认 `stdio`)。请注意,HTTP 传输自动提供 HTTP 和 SSE 端点。
- `--port ` – 使用 `http` 传输时监听的端口(默认 `3000`)。
+- `--api-key ` – 用于身份验证的API密钥。您可以通过在 [context7.com/dashboard](https://context7.com/dashboard) 创建账户来获取您的API密钥。
使用 http 传输和端口 8080 的示例:
@@ -1032,7 +1058,7 @@ bun run dist/index.js --transport http --port 8080
另一个使用 stdio 传输 的示例:
```bash
-bun run dist/index.js --transport stdio
+bun run dist/index.js --transport stdio --api-key YOUR_API_KEY
```
@@ -1043,7 +1069,7 @@ bun run dist/index.js --transport stdio
"mcpServers": {
"context7": {
"command": "npx",
- "args": ["tsx", "/path/to/folder/context7-mcp/src/index.ts"]
+ "args": ["tsx", "/path/to/folder/context7-mcp/src/index.ts", "--api-key", "YOUR_API_KEY"]
}
}
}
From 8a0071791ae67fc55dcaf82fdb717799abb4c182 Mon Sep 17 00:00:00 2001
From: BiFangKNT <1320414964@qq.com>
Date: Sat, 23 Aug 2025 15:47:04 +0800
Subject: [PATCH 3/7] =?UTF-8?q?docs:=20=E4=BF=AE=E5=A4=8D=E4=B8=AD?=
=?UTF-8?q?=E6=96=87=E6=96=87=E6=A1=A3=E4=B8=AD=E7=9A=84=E9=93=BE=E6=8E=A5?=
=?UTF-8?q?=E8=B7=AF=E5=BE=84=E9=94=99=E8=AF=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/README.zh-CN.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index 9360ad3..fa6d0a8 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -40,7 +40,7 @@ Context7将最新的代码示例和文档直接获取到你的LLM上下文中。
## 📚 添加项目
-查看我们的[项目添加指南](./docs/adding-projects.md)来学习如何将你最喜欢的库添加(或更新)到 Context7。
+查看我们的[项目添加指南](./adding-projects.md)来学习如何将你最喜欢的库添加(或更新)到 Context7。
## 🛠️ 开始使用
From 58a7493a423733986fe19793561855cccf4ab9f3 Mon Sep 17 00:00:00 2001
From: BiFangKNT <1320414964@qq.com>
Date: Sat, 23 Aug 2025 23:05:02 +0800
Subject: [PATCH 4/7] =?UTF-8?q?docs:=20=E4=BF=AE=E5=A4=8D=E7=AE=80?=
=?UTF-8?q?=E4=BD=93=E4=B8=AD=E6=96=87=E6=96=87=E6=A1=A3=E4=B8=AD=E7=9A=84?=
=?UTF-8?q?=E8=AF=AD=E8=A8=80=E9=93=BE=E6=8E=A5=E8=B7=AF=E5=BE=84?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
更新简体中文README.md文件中其他语言文档的链接路径,确保指向正确的文件位置
---
docs/README.zh-CN.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index fa6d0a8..e627037 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -6,7 +6,7 @@
[](https://cursor.com/en/install-mcp?name=context7&config=eyJ1cmwiOiJodHRwczovL21jcC5jb250ZXh0Ny5jb20vbWNwIn0%3D) [
](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%7B%22name%22%3A%22context7%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40upstash%2Fcontext7-mcp%40latest%22%5D%7D)
-[](./docs/README.zh-TW.md) [](./docs/README.zh-CN.md) [](./docs/README.ja.md) [](./docs/README.ko.md) [](./docs/README.es.md) [](./docs/README.fr.md) [![Documentação em Português (Brasil)]()](./docs/README.pt-BR.md) [](./docs/README.it.md) [](./docs/README.id-ID.md) [](./docs/README.de.md) [](./docs/README.ru.md) [](./docs/README.uk.md) [](./docs/README.tr.md) [](./docs/README.ar.md) [](./docs/README.vi.md)
+[](../README.md) [](./README.zh-TW.md) [](./README.ja.md) [](./README.ko.md) [](./README.es.md) [](./README.fr.md) [![Documentação em Português (Brasil)]()](./README.pt-BR.md) [](./README.it.md) [](./README.id-ID.md) [](./README.de.md) [](./README.ru.md) [](./README.uk.md) [](./README.tr.md) [](./README.ar.md) [](./README.vi.md)
## ❌ 不使用Context7
From 8f8e880694aa35b9091cb8c8d601e32a7d8b132f Mon Sep 17 00:00:00 2001
From: BiFangKNT <1320414964@qq.com>
Date: Sun, 24 Aug 2025 00:30:59 +0800
Subject: [PATCH 5/7] =?UTF-8?q?docs:=20=E5=B0=86=E8=8B=B1=E6=96=87?=
=?UTF-8?q?=E6=96=87=E6=A1=A3=E9=93=BE=E6=8E=A5=E9=A2=9C=E8=89=B2=E6=94=B9?=
=?UTF-8?q?=E4=B8=BA=E7=B4=AB=E8=89=B2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/README.zh-CN.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index e627037..36ea305 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -6,7 +6,7 @@
[](https://cursor.com/en/install-mcp?name=context7&config=eyJ1cmwiOiJodHRwczovL21jcC5jb250ZXh0Ny5jb20vbWNwIn0%3D) [
](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%7B%22name%22%3A%22context7%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40upstash%2Fcontext7-mcp%40latest%22%5D%7D)
-[](../README.md) [](./README.zh-TW.md) [](./README.ja.md) [](./README.ko.md) [](./README.es.md) [](./README.fr.md) [![Documentação em Português (Brasil)]()](./README.pt-BR.md) [](./README.it.md) [](./README.id-ID.md) [](./README.de.md) [](./README.ru.md) [](./README.uk.md) [](./README.tr.md) [](./README.ar.md) [](./README.vi.md)
+[](../README.md) [](./README.zh-TW.md) [](./README.ja.md) [](./README.ko.md) [](./README.es.md) [](./README.fr.md) [![Documentação em Português (Brasil)]()](./README.pt-BR.md) [](./README.it.md) [](./README.id-ID.md) [](./README.de.md) [](./README.ru.md) [](./README.uk.md) [](./README.tr.md) [](./README.ar.md) [](./README.vi.md)
## ❌ 不使用Context7
From 4975a448c95b7ebff6d6dc035a6a6a19332926d1 Mon Sep 17 00:00:00 2001
From: BiFangKNT <1320414964@qq.com>
Date: Sun, 24 Aug 2025 00:47:41 +0800
Subject: [PATCH 6/7] =?UTF-8?q?docs:=20=E4=BF=AE=E6=AD=A3=E4=B8=AD?=
=?UTF-8?q?=E6=96=87=E6=96=87=E6=A1=A3=E4=B8=AD=E7=9A=84=E5=B0=81=E9=9D=A2?=
=?UTF-8?q?=E5=9B=BE=E7=89=87=E8=B7=AF=E5=BE=84?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/README.zh-CN.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index 36ea305..ce81048 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -1,4 +1,4 @@
-
+
# Context7 MCP - 为所有 Prompt 获取最新文档
From 46541db2477aac9b79616eace1174b88526e914b Mon Sep 17 00:00:00 2001
From: BiFangKNT <1320414964@qq.com>
Date: Sun, 24 Aug 2025 02:06:30 +0800
Subject: [PATCH 7/7] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0Claude=20Code?=
=?UTF-8?q?=E6=96=87=E6=A1=A3=E9=93=BE=E6=8E=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
修复Claude Code MCP文档的链接地址,指向更准确的最新文档位置
---
docs/README.zh-CN.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index ce81048..13f54d7 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -109,7 +109,7 @@ npx -y @smithery/cli@latest install @upstash/context7-mcp --client
在 Claude Code 中安装
-运行以下命令。更多信息请参见 [Claude Code MCP 文档](https://docs.anthropic.com/zh-CN/docs/agents-and-tools/claude-code/tutorials#set-up-model-context-protocol-mcp)。
+运行以下命令。更多信息请参见 [Claude Code MCP 文档](https://docs.anthropic.com/zh-CN/docs/claude-code/mcp)。
#### Claude Code 远程服务器连接