Mistral MCP server. Manage your Mistral platform — models, files, batch jobs, agents and RAG document libraries.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"mistral": {
"url": "https://mistral.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
mistral_list_models | read | List models List every model available to your account — Mistral base models plus your fine-tuned models. Management API: GET /v1/models. |
mistral_get_model | read | Get a model Retrieve details for a single model (base or fine-tuned). Management API: GET /v1/models/{model_id}. |
mistral_list_files | read | List files List uploaded files belonging to your organization (fine-tune data, batch inputs/outputs, etc.). Management API: GET /v1/files. |
mistral_get_file | read | Get a file Retrieve metadata about a specific uploaded file. Management API: GET /v1/files/{file_id}. |
mistral_get_file_url | read | Get a file download URL Get a temporary signed download URL for an uploaded file. Management API: GET /v1/files/{file_id}/url. |
mistral_list_batch_jobs | read | List batch jobs List batch inference jobs for your organization and user, with optional filters. Management API: GET /v1/batch/jobs. |
mistral_get_batch_job | read | Get a batch job Retrieve details and status for a single batch job. Management API: GET /v1/batch/jobs/{job_id}. |
mistral_list_agents | read | List agents List agent entities in your account, sorted by creation time. Management API: GET /v1/agents. |
mistral_get_agent | read | Get an agent Retrieve a single agent entity with its configuration. Management API: GET /v1/agents/{agent_id}. |
mistral_list_libraries | read | List document libraries List RAG document libraries you own or that have been shared with you. Management API: GET /v1/libraries. |
mistral_get_library | read | Get a document library Retrieve details about a single document library. Management API: GET /v1/libraries/{library_id}. |
mistral_list_library_documents | read | List documents in a library List the documents uploaded to a given document library. Management API: GET /v1/libraries/{library_id}/documents. |
mistral_create_agent | write | Create an agent Creates a Mistral Agent (additive configuration). Management API: POST /v1/agents. Requires model and name; instructions, tools, completion_args, description and handoffs are optional. |
mistral_cancel_batch_job | write | Cancel a batch job Cancels a running Mistral batch job — stops processing and further billing for that job. Management API: POST /v1/batch/jobs/{job_id}/cancel. |
mistral_delete_file | write | Delete a file Permanently deletes an uploaded file from Mistral. Destructive. Management API: DELETE /v1/files/{file_id}. |
mistral_usage_status | Usage status (free-tier meter) Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. Read-only; does not count against the meter. | |
mistral_upgrade | Upgrade to Pro (unlimited) Subscribe to the Pro plan for UNLIMITED Mistral tool calls (the free tier caps monthly usage). Choose monthly ($9/month) or yearly ($90/year — 2 months free) billing. Returns a Stripe Checkout link to open in your browser; after payment your account upgrades automatically. Read-only; does not count against the meter. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.