Context7 MCP
Context7 is an MCP (Model Context Protocol) server that gives AI coding assistants live access to up-to-date library documentation. Instead of relying on potentially outdated training data, your assistant fetches the latest MindSwap API docs on the fly.
What is Context7?
Context7 resolves library names to their documentation and pulls relevant, version-specific content directly into your prompt context. This means your AI assistant always works with accurate, current API references — no hallucinated endpoints or deprecated parameters.
MindSwap on Context7
The MindSwap API documentation is available on Context7 at:
https://mindswap.fun/api-docsUse this URL when configuring Context7 to search for MindSwap documentation.
Setup
Cursor
Add to your .cursor/mcp.json:
{
"mcpServers": {
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"]
}
}
}Windsurf
Add to your MCP config:
{
"mcpServers": {
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"]
}
}
}VS Code (Copilot)
Add to your .vscode/mcp.json:
{
"servers": {
"context7": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"]
}
}
}Usage
Once configured, simply mention use context7 in your prompt and ask about MindSwap APIs. Context7 will automatically fetch the relevant documentation.
use context7
How do I authenticate with the MindSwap Business API?