Meilisearch for your agents.
Connect Meilisearch once and every agent you run inside Even (Claude Code, Codex, OpenCode, Even Agents) can use it: 12 curated tools, discovered on demand, with your key stored on your machine and every call going direct to Meilisearch.
What agents can do with Meilisearch
Curated for agents: the calls that matter, with schemas and descriptions written for tool use, not an endpoint dump.
meilisearch_healthCheck the instance is reachable and the key works.
meilisearch_list_indexesList indexes on the instance.
meilisearch_searchSearch an index.
meilisearch_get_indexGet one index's metadata (uid, primary key, timestamps).
meilisearch_create_indexCreate a new index. `uid` is the index name; `primaryKey` names the documents' id field (optional). Returns a task; poll with get_task.
meilisearch_get_documentsFetch stored documents from an index (not a search). Page with limit and offset.
meilisearch_get_taskCheck the status of an async task (indexing, settings changes) by its uid.
meilisearch_get_statsGet instance-wide stats: database size and per-index document counts and indexing state.
meilisearch_delete_indexDelete an index and all its documents.
meilisearch_update_indexUpdate an index's primary key. Returns a task; poll with get_task.
meilisearch_add_documentsAdd or replace documents in an index. Body is an array of document objects. Returns a task; poll with get_task.
meilisearch_delete_documents_batchDelete documents by their IDs. Body is an array of document IDs. Returns a task; poll with get_task.
Connect it in a minute
The connect flow is agent-driven: Even opens the key page in its own browser and collects the key through a secure native field. It never passes through the chat.
- Paste the prompt below into any agent running inside Even, or click Connect in Even's catalog.
- Use your instance's master key or an API key with search/admin access.
- The instance URL is your Meilisearch host (Cloud URL or http://localhost:7700).
- Paste the key.
- Paste the key into Even's secure field. Even verifies it and your agents are live.
Connect Meilisearch to Even: call connect_begin("meilisearch") on the even-connect MCP and walk me through it.
Meilisearch searches indexed data with typo tolerance, manages search indexes, and retrieves stored documents.
More Even Connect services
One MCP server, a handful of meta-tools, every service below. Agents search for the right tool at run time, so context stays lean.