Configure indexes, add documents, run full-text searches, and tune relevance in Meilisearch from Claude Code — build lightning-fast search without complex configuration.
Meilisearch is an open-source, lightweight full-text search engine optimized for fast, typo-tolerant search with instant results. The Meilisearch MCP connects Claude Code to your Meilisearch instance, allowing it to manage indexes, add and update documents, run search queries, and configure relevance settings — making search integration and debugging effortless.
mcpizy install meilisearch
Provide your Meilisearch host URL and API master key during setup. For cloud-hosted instances, use the URL from Meilisearch Cloud.
Add a product catalog and test search quality:
// Claude will:
// 1. Create a "products" index with id as primary key
// 2. Configure "name" and "description" as searchable attributes
// 3. Add "category" and "price" as filterable attributes
// 4. Index your product JSON array
// 5. Run a test search and show top 5 results