Skip to content

Commit ed44bcf

Browse files
claudeits-mash
authored andcommitted
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
1 parent 0217546 commit ed44bcf

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

servers/io.weaviate-mcp.json

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

0 commit comments

Comments
 (0)