Best for
- Developers using fast-moving frameworks/libraries worried about the AI suggesting stale code
- Scenarios wanting zero-config documentation lookup
Officially maintained by Upstash; the tool design is minimal (just two read-only tools) and addresses a specific, common pain point — an AI assistant coding against stale API knowledge. Low install barrier, usable without an API key. This review is a static check of source and docs, not an actual call test.
Officially maintained by Upstash, this MCP server addresses a common problem: an AI coding assistant's training data going stale, leading it to suggest outdated API usage. Two tools first resolve a library name into a Context7 library ID, then retrieve documentation for that library's current version — so the assistant references today's real API instead of what it memorized during training.
Start via npx -y @upstash/context7-mcp and use it immediately without an API key (subject to rate limits); apply for a CONTEXT7_API_KEY at context7.com for higher quota and set it as an env var. An MCPB one-click install bundle and a remote Streamable HTTP endpoint (https://mcp.context7.com/mcp) are also available as alternatives.
{
"mcpServers": {
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp"],
"env": {
"CONTEXT7_API_KEY": "<OPTIONAL_API_KEY>"
}
}
}
}