Meilisearch · supported engine

Meilisearch, tuned from one panel.

Verified HTTP/TLS connections with index and settings browsing, JSON, text, and multi search, document CRUD, API key administration, and logical ZIP backups.

HTTP/TLS verified connections · API key admin

Ranking rules that actually rank

Anatomy of a Meilisearch search, end to end.

Click any stage below to see what happens inside Meilisearch when a query runs. Mongrel profiles the instance's tasks and timings from the same workbench.

// Query parsing · q = "sweatshirt"

Tokenizes the query into 1 term. Locale detection, separator splitting, stop-word filtering. 0.4ms - essentially free.

// products · meili-prod-1
POST /indexes/products/search
{
  "q": "sweatshirt",
  "filter": "category = apparel AND price < 80",
  "facets": ["brand", "category"],
  "sort": ["price:asc"],
  "limit": 20
}

// 44.4ms · 4,812 candidates ranked
// ✓ Mongrel validates filter + sort fields against
//   the index settings before the request runs

GET /indexes/products/settings
{
  "filterableAttributes": ["category", "price", "brand"],
  "sortableAttributes": ["price"]
}
Meilisearch surface

What Mongrel ships for Meilisearch.

Task profiling

Watch indexation and settings tasks from the Meilisearch task queue - status, timings, and failures - without leaving the workbench.

Index & settings browsing

Browse indexes side by side with their full settings: searchable, filterable, and sortable attributes, synonyms, stop words.

CSV, JSON & JSONL import/export

Import and export documents as CSV, JSON, or JSON Lines - staged and validated before anything is written.

Index management

Create indexes with a primary key, delete the ones you don't need, and track every task to completion.

Facets & filters

Run searches with facets, filters, and sorts - Mongrel validates every filter and sort field against the index's settings first.

Document CRUD

Browse, edit, add, and delete documents as JSON. Inline validation against the index's primary key.

JSON, text & multi search

Run raw JSON searches, plain-text queries, or batch multi-search across indexes from one console.

API key administration

Create and rotate API keys scoped by actions and indexes, with expiry dates. Master key never leaves the vault.

Logical ZIP backups

Export indexes, documents, and settings into a portable ZIP. Restore validates the full archive, then swaps each index into place.

Connect Meilisearch in 30 seconds.

7-day trial. macOS, Windows, Linux. No credit card.