MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

M
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.

创建于 4/19/2026
更新于 about 2 hours ago
Repository documentation and setup instructions

logo - Mistral Ai Docs MCP Server by nikhilbhima

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.

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

快速设置
此服务器的安装指南

安装包 (如果需要)

npx @modelcontextprotocol/server-mistral-ai-docs-mcp-server

Cursor 配置 (mcp.json)

{ "mcpServers": { "nikhilbhima-mistral-ai-docs-mcp-server": { "command": "npx", "args": [ "nikhilbhima-mistral-ai-docs-mcp-server" ] } } }