Skip to content

Commit 079879e

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for WEAVIATE_API_KEY)
1 parent a7de1e3 commit 079879e

1 file changed

Lines changed: 19 additions & 11 deletions

File tree

servers/io.weaviate-mcp.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,24 @@
66
"description": "Manage Weaviate vector database collections and objects. Create schemas, insert data, run vector and hybrid searches with filtering.",
77
"icon": "https://avatars.githubusercontent.com/u/37794290?v=4",
88
"schema_version": "2.1",
9-
"categories": ["database", "ai-ml"],
10-
"tags": ["weaviate", "vector-database", "semantic-search", "embeddings", "rag", "hybrid-search"],
11-
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+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "uvx",
15-
"args": ["mcp-server-weaviate"],
24+
"args": [
25+
"mcp-server-weaviate"
26+
],
1627
"env": {
1728
"WEAVIATE_URL": "${input:WEAVIATE_URL}",
1829
"WEAVIATE_API_KEY": "${input:WEAVIATE_API_KEY}"
@@ -32,7 +43,7 @@
3243
"id": "WEAVIATE_API_KEY",
3344
"label": "Weaviate API Key",
3445
"description": "API key for Weaviate Cloud. Not required for local instances.",
35-
"type": "password",
46+
"type": "text",
3647
"required": false,
3748
"secret": true,
3849
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -45,26 +56,23 @@
4556
]
4657
}
4758
},
48-
4959
"auth": {
5060
"type": "optional_api_key",
5161
"instructions": "API key required for Weaviate Cloud. Not needed for local Weaviate instances."
5262
},
53-
5463
"contributor": {
5564
"name": "Weaviate",
5665
"github": "weaviate",
5766
"url": "https://weaviate.io"
5867
},
59-
6068
"links": {
6169
"repository": "https://github.com/weaviate/mcp-server-weaviate",
6270
"homepage": "https://weaviate.io",
6371
"documentation": "https://weaviate.io/developers/weaviate"
6472
},
65-
66-
"platforms": ["all"],
67-
73+
"platforms": [
74+
"all"
75+
],
6876
"capabilities": {
6977
"tools": true,
7078
"resources": false,

0 commit comments

Comments
 (0)