usefulapi

Mistral MCP server. Manage your Mistral platform — models, files, batch jobs, agents and RAG document libraries.

Claude

  1. Open Settings → Connectors → Add custom connector
  2. Paste this URL:
    https://mistral.usefulapi.io/mcp
  3. Authenticate with Mistral when prompted

Cursor · VS Code · Windsurf · Cline

Add to your MCP config, then reload & authorize:

{
  "mcpServers": {
    "mistral": {
      "url": "https://mistral.usefulapi.io/mcp"
    }
  }
}
live17 toolsFree 100 tool calls / monthPro $9/mo · $90/yr

Tools 17

ToolTypeWhat it does
mistral_list_modelsread
List models
List every model available to your account — Mistral base models plus your fine-tuned models. Management API: GET /v1/models.
mistral_get_modelread
Get a model
Retrieve details for a single model (base or fine-tuned). Management API: GET /v1/models/{model_id}.
mistral_list_filesread
List files
List uploaded files belonging to your organization (fine-tune data, batch inputs/outputs, etc.). Management API: GET /v1/files.
mistral_get_fileread
Get a file
Retrieve metadata about a specific uploaded file. Management API: GET /v1/files/{file_id}.
mistral_get_file_urlread
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_jobsread
List batch jobs
List batch inference jobs for your organization and user, with optional filters. Management API: GET /v1/batch/jobs.
mistral_get_batch_jobread
Get a batch job
Retrieve details and status for a single batch job. Management API: GET /v1/batch/jobs/{job_id}.
mistral_list_agentsread
List agents
List agent entities in your account, sorted by creation time. Management API: GET /v1/agents.
mistral_get_agentread
Get an agent
Retrieve a single agent entity with its configuration. Management API: GET /v1/agents/{agent_id}.
mistral_list_librariesread
List document libraries
List RAG document libraries you own or that have been shared with you. Management API: GET /v1/libraries.
mistral_get_libraryread
Get a document library
Retrieve details about a single document library. Management API: GET /v1/libraries/{library_id}.
mistral_list_library_documentsread
List documents in a library
List the documents uploaded to a given document library. Management API: GET /v1/libraries/{library_id}/documents.
mistral_create_agentwrite
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_jobwrite
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_filewrite
Delete a file
Permanently deletes an uploaded file from Mistral. Destructive. Management API: DELETE /v1/files/{file_id}.
mistral_usage_statusmeta
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_upgrademeta
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.

Pricing

PlanPriceLimit
Free$0100 tool calls / month
Pro$9/mo · $90/yrUnlimited

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.