mistral mcp for VS Code
io.github.swih/mistral-mcp
Mistral AI MCP server: chat, OCR, Voxtral audio, Codestral FIM, vision, agents, batch.
client:VS Code
transport:stdio
runtime:npm
Install mistral mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mistral-api-key",
"description": "MISTRAL_API_KEY",
"password": true
}
],
"servers": {
"mistral-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mistral-mcp"
],
"env": {
"MISTRAL_API_KEY": "${input:mistral-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs