Unofficial MCP server for Mistral AI developer docs and API reference. One public URL, no auth, works in every MCP client.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mistral-ai-docs-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Unofficial MCP server for Mistral AI developer docs and API reference. One public URL, no auth, works in every MCP client.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Mistral Ai Docs Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Unofficial, community-maintained MCP server for Mistral AI's developer documentation and full API reference. Not endorsed by or affiliated with Mistral AI.
Content source: docs.mistral.ai/llms-full.txt.
Refreshed every 6 hours.
Endpoint: https://mistral-docs-mcp.vercel.app/mcp
Two MCP tools:
search_mistral_docs(query, limit?) BM25 search with fuzzy matching across
every Mistral docs and API reference page.query_mistral_docs_filesystem(command) read-only shell over a virtualized
filesystem of the docs. Supports rg, find, cat, ls.No API key. No auth. Paste the URL.
claude mcp add --transport http mistral-docs https://mistral-docs-mcp.vercel.app/mcp
Settings → Connectors → Add custom connector. URL: https://mistral-docs-mcp.vercel.app/mcp.
Add to .cursor/mcp.json (project or global):
{
"mcpServers": {
"mistral-docs": {
"url": "https://mistral-docs-mcp.vercel.app/mcp"
}
}
}
Add to mcp_config.json:
{
"mcpServers": {
"mistral-docs": {
"url": "https://mistral-docs-mcp.vercel.app/mcp"
}
}
}
Command palette: MCP: Add Server → HTTP → https://mistral-docs-mcp.vercel.app/mcp.
codex mcp add mistral-docs --url https://mistral-docs-mcp.vercel.app/mcp
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"mistral-docs": {
"command": "npx",
"args": ["mcp-remote", "https://mistral-docs-mcp.vercel.app/mcp"]
}
}
}
Add to settings.json under context_servers:
{
"context_servers": {
"mistral-docs": {
"command": { "url": "https://mistral-docs-mcp.vercel.app/mcp" }
}
}
}
Settings → Custom connectors → Add. URL: https://mistral-docs-mcp.vercel.app/mcp, auth: none.
Edit ~/.vibe/config.toml:
[[mcp_servers]]
name = "mistral-docs"
transport = "http"
url = "https://mistral-docs-mcp.vercel.app/mcp"
Restart with vibe.
Developer mode → Connectors → Create → URL https://mistral-docs-mcp.vercel.app/mcp, auth none.
No analytics. No query logging. Vercel's built-in request logs only.
git clone https://github.com/nikhilbhima/mistral-ai-docs-mcp-server
cd mistral-ai-docs-mcp-server
npm install && npm run build && npm start
Point your MCP client at http://localhost:3000/mcp.
Fork this repo and deploy to Vercel. Set two environment variables:
CRON_SECRET (any random string, used to authenticate the cron endpoint)VERCEL_DEPLOY_HOOK_URL (create a Deploy Hook in your Vercel project settings)npm install
npm run dev
npm test
See docs/design.md.
MIT