@upstash/context7-mcp 3.2.3 → 3.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1366,6 +1366,25 @@ See the [Emdash repository](https://github.com/generalaction/emdash) for more in
|
|
|
1366
1366
|
|
|
1367
1367
|
</details>
|
|
1368
1368
|
|
|
1369
|
+
<details>
|
|
1370
|
+
<summary><b>Install in Autohand Code</b></summary>
|
|
1371
|
+
|
|
1372
|
+
Use the [Autohand Code CLI](https://github.com/autohandai/code-cli/) to add the local Context7 server:
|
|
1373
|
+
|
|
1374
|
+
```sh
|
|
1375
|
+
autohand mcp add context7 npx -y @upstash/context7-mcp --api-key YOUR_API_KEY
|
|
1376
|
+
```
|
|
1377
|
+
|
|
1378
|
+
Add `--scope project` before `context7` to save the server in the current project's `.autohand` configuration instead of your user configuration.
|
|
1379
|
+
|
|
1380
|
+
For basic usage without an API key, you can connect to the remote server instead:
|
|
1381
|
+
|
|
1382
|
+
```sh
|
|
1383
|
+
autohand mcp add --transport http context7 https://mcp.context7.com/mcp
|
|
1384
|
+
```
|
|
1385
|
+
|
|
1386
|
+
</details>
|
|
1387
|
+
|
|
1369
1388
|
## 🔨 Available Tools
|
|
1370
1389
|
|
|
1371
1390
|
Context7 MCP provides the following tools that LLMs can use:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@upstash/context7-mcp",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.4",
|
|
4
4
|
"mcpName": "io.github.upstash/context7",
|
|
5
5
|
"description": "MCP server for Context7",
|
|
6
6
|
"repository": {
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
"@upstash/redis": "^1.38.0",
|
|
39
39
|
"commander": "^13.1.0",
|
|
40
40
|
"express": "^5.1.0",
|
|
41
|
-
"jose": "^6.
|
|
41
|
+
"jose": "^6.2.3",
|
|
42
42
|
"undici": "^6.26.0",
|
|
43
43
|
"zod": "^4.4.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/node": "^25.0.3",
|
|
47
47
|
"typescript": "^5.8.2",
|
|
48
|
-
"vitest": "^4.
|
|
48
|
+
"vitest": "^4.1.9"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"build": "tsc && chmod 755 dist/index.js",
|