Skip to content

Commit 76edf1f

Browse files
committed
Add Meilisearch MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 2fd91f8 commit 76edf1f

1 file changed

Lines changed: 84 additions & 0 deletions

File tree

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.meilisearch-mcp-uvx",
4+
"name": "Meilisearch (uvx)",
5+
"alias": "meilisearch",
6+
"description": "Interact with Meilisearch search engine instances. Manage indexes, documents, and settings; run searches with filtering and sorting; administer API keys and monitor tasks, health, and stats.",
7+
"logo": "https://avatars.githubusercontent.com/u/43250847?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"search",
11+
"database"
12+
],
13+
"tags": [
14+
"meilisearch",
15+
"search",
16+
"search-engine",
17+
"full-text-search",
18+
"indexing",
19+
"database"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "uvx",
24+
"args": [
25+
"meilisearch-mcp"
26+
],
27+
"env": {
28+
"MEILI_HTTP_ADDR": "${input:MEILI_HTTP_ADDR}",
29+
"MEILI_MASTER_KEY": "${input:MEILI_MASTER_KEY}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "MEILI_HTTP_ADDR",
35+
"label": "Meilisearch URL",
36+
"description": "The HTTP address of your Meilisearch instance, including scheme and port.",
37+
"type": "url",
38+
"required": true,
39+
"secret": false,
40+
"default": "http://localhost:7700",
41+
"placeholder": "https://your-instance.meilisearch.io"
42+
},
43+
{
44+
"id": "MEILI_MASTER_KEY",
45+
"label": "Master Key",
46+
"description": "Master key or API key for authenticating with your Meilisearch instance. Required for Meilisearch Cloud and any instance started with a master key.",
47+
"type": "text",
48+
"required": true,
49+
"secret": true,
50+
"placeholder": "********************************",
51+
"obtain": {
52+
"url": "https://cloud.meilisearch.com",
53+
"instructions": "Meilisearch Cloud:\n1. Open https://cloud.meilisearch.com and select your project\n2. Go to Settings > API keys\n3. Copy the Master key (or a key with the scopes you need)\n\nSelf-hosted:\nUse the value passed to --master-key (or the MEILI_MASTER_KEY env var) when you started the meilisearch binary.",
54+
"button_label": "Open Meilisearch Cloud"
55+
}
56+
}
57+
]
58+
}
59+
},
60+
"auth": {
61+
"type": "api_key",
62+
"instructions": "Provide your Meilisearch instance URL and a master/API key. Get a key from Meilisearch Cloud (Settings > API keys) or use the master key configured on your self-hosted instance."
63+
},
64+
"contributor": {
65+
"name": "Meilisearch",
66+
"github": "meilisearch",
67+
"url": "https://www.meilisearch.com"
68+
},
69+
"links": {
70+
"repository": "https://github.com/meilisearch/meilisearch-mcp",
71+
"homepage": "https://www.meilisearch.com",
72+
"documentation": "https://github.com/meilisearch/meilisearch-mcp#readme"
73+
},
74+
"platforms": [
75+
"all"
76+
],
77+
"capabilities": {
78+
"tools": true,
79+
"resources": false,
80+
"prompts": false,
81+
"read_only_mode": false
82+
},
83+
"changelog_url": "https://github.com/meilisearch/meilisearch-mcp/releases"
84+
}

0 commit comments

Comments
 (0)