freshcrate
Skin:/
Home > MCP Servers > mistral-ai-docs-mcp-server

mistral-ai-docs-mcp-server

Unofficial MCP server for Mistral AI developer docs and API reference. One public URL, no auth, works in every MCP client.

Why this rank:Release freshnessStrong adoptionHealthy release cadence

Description

Unofficial MCP server for Mistral AI developer docs and API reference. One public URL, no auth, works in every MCP client.

README

Mistral Docs MCP

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

What you get

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.

Install

No API key. No auth. Paste the URL.

Claude Code

claude mcp add --transport http mistral-docs https://mistral-docs-mcp.vercel.app/mcp

Claude Desktop

Settings → Connectors → Add custom connector. URL: https://mistral-docs-mcp.vercel.app/mcp.

Cursor

Add to .cursor/mcp.json (project or global):

{
  "mcpServers": {
    "mistral-docs": {
      "url": "https://mistral-docs-mcp.vercel.app/mcp"
    }
  }
}

Windsurf

Add to mcp_config.json:

{
  "mcpServers": {
    "mistral-docs": {
      "url": "https://mistral-docs-mcp.vercel.app/mcp"
    }
  }
}

VS Code with Copilot

Command palette: MCP: Add Server → HTTP → https://mistral-docs-mcp.vercel.app/mcp.

Codex CLI

codex mcp add mistral-docs --url https://mistral-docs-mcp.vercel.app/mcp

Gemini CLI / Gemini Code Assist

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "mistral-docs": {
      "command": "npx",
      "args": ["mcp-remote", "https://mistral-docs-mcp.vercel.app/mcp"]
    }
  }
}

Zed

Add to settings.json under context_servers:

{
  "context_servers": {
    "mistral-docs": {
      "command": { "url": "https://mistral-docs-mcp.vercel.app/mcp" }
    }
  }
}

Mistral Le Chat

Settings → Custom connectors → Add. URL: https://mistral-docs-mcp.vercel.app/mcp, auth: none.

Mistral Vibe

Edit ~/.vibe/config.toml:

[[mcp_servers]]
name = "mistral-docs"
transport = "http"
url = "https://mistral-docs-mcp.vercel.app/mcp"

Restart with vibe.

ChatGPT

Developer mode → Connectors → Create → URL https://mistral-docs-mcp.vercel.app/mcp, auth none.

Privacy

No analytics. No query logging. Vercel's built-in request logs only.

Run locally

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.

Self-host

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)

Development

npm install
npm run dev
npm test

Design doc

See docs/design.md.

License

MIT

Release History

VersionChangesUrgencyDate
main@2026-04-22Latest activity on main branchHigh4/22/2026
0.0.0No release found — using repo HEADHigh4/21/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

pdf-reader-mcp📄 Production-ready MCP server for PDF processing - 5-10x faster with parallel processing and 94%+ test coveragev4.0.0
MediaWiki-MCP-ServerModel Context Protocol (MCP) Server to connect your AI with any MediaWikiv0.14.0
XcodeBuildMCPA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.v2.7.0
affine-mcp-serverModel Context Protocol server for AFFiNE. Connect AI assistants to AFFiNE workspaces, documents, databases, and collaboration APIs over stdio or HTTP.v3.0.0
spaceship-mcp🚀 Manage domains, DNS, contacts, and listings with spaceship-mcp, a community-built MCP server for the Spaceship API.main@2026-07-19

More in MCP Servers

supersetCode Editor for the AI Agents Era - Run an army of Claude Code, Codex, etc. on your machine
kreuzbergA polyglot document intelligence framework with a Rust core. Extract text, metadata, images, and structured information from PDFs, Office documents, images, and 91+ formats. Available for Rust, Python
ai-engineering-from-scratchLearn it. Build it. Ship it for others.
CodeGraphContextAn MCP server plus a CLI tool that indexes local code into a graph database to provide context to AI assistants.