Merge pull request #98 from JyotirmoyDas05/master

This commit is contained in:
Enes Gules 2025-04-27 23:09:44 +03:00 committed by GitHub
commit a6ef9ba02a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -290,6 +290,43 @@ If you see this error, try using `bunx` instead of `npx`.
This often resolves module resolution issues, especially in environments where `npx` does not properly install or resolve packages.
Alternatively, you can also try the following setups depending on your editor:
**VS Code:**
```json
{
"servers": {
"Context7": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"--node-options=--experimental-vm-modules",
"@upstash/context7-mcp@1.0.6"
]
}
}
}
```
**Cursor / Windsurf / Claude Desktop:**
```json
{
"mcpServers": {
"context7": {
"command": "npx",
"args": [
"-y",
"--node-options=--experimental-vm-modules",
"@upstash/context7-mcp@1.0.6"
]
}
}
}
```
### MCP Client Errors
1. Try removing `@latest` from the package name.