# io.github.mrfentmen/meilisearch-mcp (npm · meilisearch-mcp)

Search indexes, manage documents, check health and stats.

- Trust score: 73/100 (medium)
- Change this week: +5
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-16

## Components

- npm · `meilisearch-mcp`: 73/100 (this document), [markdown](https://verifymcp.io/servers/mrfentmen-meilisearch-mcp/meilisearch-mcp.md), [page](https://verifymcp.io/servers/mrfentmen-meilisearch-mcp/meilisearch-mcp)

## Channel facts

- Registry: `npm`
- Package: `meilisearch-mcp`
- Version: `1.0.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, 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-16.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 30 of 96 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 7 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 585 tokens (~39/item across 15 items; 15 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add mrfentmen-meilisearch-mcp -- npx -y meilisearch-mcp
```

### Codex

```bash
codex mcp add mrfentmen-meilisearch-mcp -- npx -y meilisearch-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mrfentmen-meilisearch-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "meilisearch-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add mrfentmen-meilisearch-mcp --command npx --arg -y --arg meilisearch-mcp
```

### Hermes

```yaml
mcp_servers:
  mrfentmen-meilisearch-mcp:
    command: "npx"
    args: ["-y", "meilisearch-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "mrfentmen-meilisearch-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "meilisearch-mcp"
      ]
    }
  }
}
```

## 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-16 (score 73, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-12 (score 69, 0)

- [functional regression] Security disclosure: unverified → fail

### 2026-08-11 (score 69, +1)

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

### 2026-08-08 (score 68)

First indexed and scored.

## MCP tools (15)

### `check_health` (~20 tokens)

Check if the MeiliSearch server is running and healthy.

### `list_indexes` (~26 tokens)

List all MeiliSearch indexes.

Input parameters:

- `limit` (number): Max indexes to return

### `get_index` (~29 tokens)

Get details about a specific MeiliSearch index.

Input parameters:

- `index_uid` (string, required): The index UID

### `create_index` (~42 tokens)

Create a new MeiliSearch index.

Input parameters:

- `primary_key` (string): Primary key for documents (default: id)
- `uid` (string, required): Unique index identifier

### `delete_index` (~28 tokens)

Delete a MeiliSearch index.

Input parameters:

- `index_uid` (string, required): The index UID to delete

### `search_index` (~86 tokens)

Search for documents in a MeiliSearch index.

Input parameters:

- `filter` (string): Filter expression (e.g., price > 100)
- `index_uid` (string, required): The index UID to search in
- `limit` (number): Max results to return (default 20)
- `offset` (number): Number of results to skip
- `query` (string, required): Search query string

### `get_documents` (~59 tokens)

List documents in a MeiliSearch index.

Input parameters:

- `index_uid` (string, required): The index UID
- `limit` (number): Max documents to return (default 20)
- `offset` (number): Number of documents to skip (default 0)

### `get_document` (~42 tokens)

Get a single document by ID from a MeiliSearch index.

Input parameters:

- `id` (string, required): The document ID
- `index_uid` (string, required): The index UID

### `add_documents` (~61 tokens)

Add documents to a MeiliSearch index. Accepts a JSON array of document objects.

Input parameters:

- `documents` (string, required): JSON array of documents, e.g. [{"id":"1","title":"Doc"}]
- `index_uid` (string, required): The index UID

### `delete_document` (~43 tokens)

Delete a document by ID from a MeiliSearch index.

Input parameters:

- `id` (string, required): The document ID to delete
- `index_uid` (string, required): The index UID

### `get_stats` (~17 tokens)

Get statistics about the MeiliSearch instance.

### `get_index_stats` (~27 tokens)

Get statistics for a specific index.

Input parameters:

- `index_uid` (string, required): The index UID

### `get_task` (~27 tokens)

Get the status of an asynchronous task.

Input parameters:

- `task_uid` (string, required): The task UID

### `list_keys` (~19 tokens)

List all API keys for the MeiliSearch instance.

### `update_settings` (~59 tokens)

Update settings for a MeiliSearch index (searchable attributes, filterable, sortable, ranking rules, etc).

Input parameters:

- `index_uid` (string, required): The index UID
- `settings` (string, required): JSON settings object (see MeiliSearch settings API)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/mrfentmen-meilisearch-mcp/meilisearch-mcp#diagnostics

## Score history

- 2026-08-16: 73
- 2026-08-15: 69
- 2026-08-14: 69
- 2026-08-13: 69
- 2026-08-12: 69
- 2026-08-11: 69
- 2026-08-10: 68
- 2026-08-09: 68
- 2026-08-08: 68

## Links

- npm package: https://www.npmjs.com/package/meilisearch-mcp
- Socket report: https://socket.dev/npm/package/meilisearch-mcp
- Repository: https://github.com/mrfentmen/meilisearch-mcp
- Changelog RSS feed: https://verifymcp.io/servers/mrfentmen-meilisearch-mcp/meilisearch-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/mrfentmen-meilisearch-mcp/meilisearch-mcp.json
- HTML version of this page: https://verifymcp.io/servers/mrfentmen-meilisearch-mcp/meilisearch-mcp
