Skip to content

Commit ae1e744

Browse files
authored
feat: add Weaviate MCP server definition (#83)
* Add Weaviate MCP server definition Official Weaviate MCP server for vector database operations. Manage collections, insert data, and run vector/hybrid searches. Uses mcp-server-weaviate via uvx. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for WEAVIATE_API_KEY) * fix: rename server files with transport suffix - io.weaviate-mcp.json -> io.weaviate-mcp-uvx.json (id: io.weaviate-mcp-uvx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 22c696f commit ae1e744

1 file changed

Lines changed: 82 additions & 0 deletions

File tree

servers/io.weaviate-mcp-uvx.json

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "io.weaviate-mcp-uvx",
4+
"name": "Weaviate (uvx)",
5+
"alias": "weaviate",
6+
"description": "Manage Weaviate vector database collections and objects. Create schemas, insert data, run vector and hybrid searches with filtering.",
7+
"icon": "https://avatars.githubusercontent.com/u/37794290?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"database",
11+
"ai-ml"
12+
],
13+
"tags": [
14+
"weaviate",
15+
"vector-database",
16+
"semantic-search",
17+
"embeddings",
18+
"rag",
19+
"hybrid-search"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "uvx",
24+
"args": [
25+
"mcp-server-weaviate"
26+
],
27+
"env": {
28+
"WEAVIATE_URL": "${input:WEAVIATE_URL}",
29+
"WEAVIATE_API_KEY": "${input:WEAVIATE_API_KEY}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "WEAVIATE_URL",
35+
"label": "Weaviate URL",
36+
"description": "URL of your Weaviate instance. Use http://localhost:8080 for local or your Weaviate Cloud URL.",
37+
"type": "url",
38+
"required": true,
39+
"secret": false,
40+
"placeholder": "http://localhost:8080"
41+
},
42+
{
43+
"id": "WEAVIATE_API_KEY",
44+
"label": "Weaviate API Key",
45+
"description": "API key for Weaviate Cloud. Not required for local instances.",
46+
"type": "text",
47+
"required": false,
48+
"secret": true,
49+
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
50+
"obtain": {
51+
"url": "https://console.weaviate.cloud/",
52+
"instructions": "1. Go to console.weaviate.cloud\n2. Select your cluster\n3. Go to API keys section\n4. Copy the admin API key",
53+
"button_label": "Get API Key"
54+
}
55+
}
56+
]
57+
}
58+
},
59+
"auth": {
60+
"type": "optional_api_key",
61+
"instructions": "API key required for Weaviate Cloud. Not needed for local Weaviate instances."
62+
},
63+
"contributor": {
64+
"name": "Weaviate",
65+
"github": "weaviate",
66+
"url": "https://weaviate.io"
67+
},
68+
"links": {
69+
"repository": "https://github.com/weaviate/mcp-server-weaviate",
70+
"homepage": "https://weaviate.io",
71+
"documentation": "https://weaviate.io/developers/weaviate"
72+
},
73+
"platforms": [
74+
"all"
75+
],
76+
"capabilities": {
77+
"tools": true,
78+
"resources": false,
79+
"prompts": false,
80+
"read_only_mode": false
81+
}
82+
}

0 commit comments

Comments
 (0)