# io.usefulapi/mistral (remote · mistral.usefulapi.io)

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

- Trust score: 18/100 (low)
- Change this week: −51
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `mistral.usefulapi.io`: 18/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-mistral/mistral.md), [page](https://verifymcp.io/servers/io-usefulapi-mistral/mistral)

## Channel facts

- Endpoint: `https://mistral.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.1`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 46/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to connect, but we couldn't read the tool list to see what that exposes.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 0/100
  - Transport check failed: declared streamable-http, but the endpoint returned HTTP 429.
- **Schema Quality & AI Usability**: 0/100
  - Schema not yet verified: we couldn't read the endpoint's schema.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: we couldn't read the endpoint's tools.
- **Capabilities**: 0/100
  - Capabilities not yet verified: we couldn't read the endpoint's capabilities.

**Unverified: 4 categories.** Categories scored 0 because we could not verify them: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-mistral https://mistral.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-mistral]
url = "https://mistral.usefulapi.io/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-usefulapi-mistral": {
      "type": "remote",
      "url": "https://mistral.usefulapi.io/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add io-usefulapi-mistral --url https://mistral.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-mistral:
    url: "https://mistral.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-mistral": {
      "type": "http",
      "url": "https://mistral.usefulapi.io/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 18, −54)

- [security regression] Endpoint reachability: reachable → not serving MCP
- [security regression] Authorization: pass → unverified
- [security regression] Stability: 0.20 → unverified
- [security regression] Transport: pass → fail
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Capabilities: fail → unverified

### 2026-08-02 (score 72, +54)

- [security improvement] Authorization: unverified → pass
- [security improvement] Transport: fail → pass
- [functional regression] MCP protocol: unverified → fail
- [functional improvement] Endpoint reachability: not serving MCP → reachable
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Stability: unverified → 0.20

### 2026-08-01 (score 18, −53)

- [security regression] Endpoint reachability: reachable → not serving MCP
- [security regression] Stability: 0.13 → unverified
- [security regression] Authorization: pass → unverified
- [security regression] Transport: pass → fail
- [functional regression] Capabilities: fail → unverified
- [functional regression] Tool coverage: 100 → unverified

### 2026-07-31 (score 71, +2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 69, −1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 70, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 69, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 69, +57)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (15)

### `mistral_list_models` (~39 tokens)

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` (~62 tokens)

Get a model

Retrieve details for a single model (base or fine-tuned). Management API: GET /v1/models/{model_id}.

Input parameters:

- `model_id` (string, required): The model id, e.g. mistral-large-latest or a fine-tuned model id.

### `mistral_list_files` (~139 tokens)

List files

List uploaded files belonging to your organization (fine-tune data, batch inputs/outputs, etc.). Management API: GET /v1/files.

Input parameters:

- `page` (integer): Page number (0-indexed). Default 0.
- `page_size` (integer): Files per page. Default 100.
- `purpose` (string): Filter by purpose, e.g. fine-tune, batch.
- `sample_type` (string): Filter by sample type, e.g. instruct, batch_request.
- `search` (string): Search files by name.
- `source` (string): Filter by source, e.g. upload, mistral.

### `mistral_get_file` (~43 tokens)

Get a file

Retrieve metadata about a specific uploaded file. Management API: GET /v1/files/{file_id}.

Input parameters:

- `file_id` (string, required): The file id (UUID).

### `mistral_get_file_url` (~49 tokens)

Get a file download URL

Get a temporary signed download URL for an uploaded file. Management API: GET /v1/files/{file_id}/url.

Input parameters:

- `file_id` (string, required): The file id (UUID).

### `mistral_list_batch_jobs` (~150 tokens)

List batch jobs

List batch inference jobs for your organization and user, with optional filters. Management API: GET /v1/batch/jobs.

Input parameters:

- `created_after` (string): ISO 8601 date-time; only jobs created after this time.
- `created_by_me` (boolean): If true, only jobs created by the current user. Default false.
- `model` (string): Filter by model name.
- `page` (integer): Page number (0-indexed). Default 0.
- `page_size` (integer): Jobs per page. Default 100.
- `status` (string): Filter by job status, e.g. QUEUED, RUNNING, SUCCESS, FAILED, CANCELLED.

### `mistral_get_batch_job` (~49 tokens)

Get a batch job

Retrieve details and status for a single batch job. Management API: GET /v1/batch/jobs/{job_id}.

Input parameters:

- `job_id` (string, required): The batch job id (UUID).

### `mistral_list_agents` (~64 tokens)

List agents

List agent entities in your account, sorted by creation time. Management API: GET /v1/agents.

Input parameters:

- `page` (integer): Page number (0-indexed). Default 0.
- `page_size` (integer): Agents per page. Default 20.

### `mistral_get_agent` (~43 tokens)

Get an agent

Retrieve a single agent entity with its configuration. Management API: GET /v1/agents/{agent_id}.

Input parameters:

- `agent_id` (string, required): The agent id.

### `mistral_list_libraries` (~107 tokens)

List document libraries

List RAG document libraries you own or that have been shared with you. Management API: GET /v1/libraries.

Input parameters:

- `page` (integer): Deprecated offset page (use page_token). Default 0.
- `page_size` (integer): Libraries per page (1-100). Default 100.
- `page_token` (string): Continuation cursor from a previous response's next_page_token.
- `search` (string): Case-insensitive search on the library name.

### `mistral_get_library` (~44 tokens)

Get a document library

Retrieve details about a single document library. Management API: GET /v1/libraries/{library_id}.

Input parameters:

- `library_id` (string, required): The library id (UUID).

### `mistral_list_library_documents` (~96 tokens)

List documents in a library

List the documents uploaded to a given document library. Management API: GET /v1/libraries/{library_id}/documents.

Input parameters:

- `library_id` (string, required): The library id (UUID).
- `page` (integer): Page number (0-indexed). Default 0.
- `page_size` (integer): Documents per page (1-100). Default 100.
- `search` (string): Search documents by name.

### `mistral_create_agent` (~174 tokens)

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.

Input parameters:

- `completion_args` (object): Completion arguments (temperature, top_p, etc.) as a passthrough object.
- `description` (string): Free-text description of the agent.
- `handoffs` (array): Agent ids this agent may hand off to.
- `instructions` (string): System instruction prompt the agent follows.
- `model` (string, required): Model powering the agent, e.g. mistral-large-latest.
- `name` (string, required): Human-readable agent name.
- `tools` (array): Tools available to the agent (passthrough objects, e.g. {type:'web_search'}).

### `mistral_cancel_batch_job` (~63 tokens)

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.

Input parameters:

- `job_id` (string, required): The batch job id (UUID) to cancel.

### `mistral_delete_file` (~52 tokens)

Delete a file

Permanently deletes an uploaded file from Mistral. Destructive. Management API: DELETE /v1/files/{file_id}.

Input parameters:

- `file_id` (string, required): The file id (UUID) to delete.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/io-usefulapi-mistral/mistral#diagnostics

## Score history

- 2026-08-03: 18
- 2026-08-02: 72
- 2026-08-01: 18
- 2026-07-31: 71
- 2026-07-30: 69
- 2026-07-29: 70
- 2026-07-28: 69
- 2026-07-27: 69
- 2026-07-26: 12

## Links

- Remote endpoint: https://mistral.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-mistral/mistral/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-mistral/mistral/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-mistral/mistral
