From a7de1e3cac284f95235247b3c81eca213999b4a8 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:35:47 +0000 Subject: [PATCH 1/3] 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 --- servers/io.weaviate-mcp.json | 74 ++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 servers/io.weaviate-mcp.json diff --git a/servers/io.weaviate-mcp.json b/servers/io.weaviate-mcp.json new file mode 100644 index 0000000..84d09ff --- /dev/null +++ b/servers/io.weaviate-mcp.json @@ -0,0 +1,74 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "io.weaviate-mcp", + "name": "Weaviate", + "alias": "weaviate", + "description": "Manage Weaviate vector database collections and objects. Create schemas, insert data, run vector and hybrid searches with filtering.", + "icon": "https://avatars.githubusercontent.com/u/37794290?v=4", + "schema_version": "2.1", + "categories": ["database", "ai-ml"], + "tags": ["weaviate", "vector-database", "semantic-search", "embeddings", "rag", "hybrid-search"], + + "transport": { + "type": "stdio", + "command": "uvx", + "args": ["mcp-server-weaviate"], + "env": { + "WEAVIATE_URL": "${input:WEAVIATE_URL}", + "WEAVIATE_API_KEY": "${input:WEAVIATE_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "WEAVIATE_URL", + "label": "Weaviate URL", + "description": "URL of your Weaviate instance. Use http://localhost:8080 for local or your Weaviate Cloud URL.", + "type": "url", + "required": true, + "secret": false, + "placeholder": "http://localhost:8080" + }, + { + "id": "WEAVIATE_API_KEY", + "label": "Weaviate API Key", + "description": "API key for Weaviate Cloud. Not required for local instances.", + "type": "password", + "required": false, + "secret": true, + "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://console.weaviate.cloud/", + "instructions": "1. Go to console.weaviate.cloud\n2. Select your cluster\n3. Go to API keys section\n4. Copy the admin API key", + "button_label": "Get API Key" + } + } + ] + } + }, + + "auth": { + "type": "optional_api_key", + "instructions": "API key required for Weaviate Cloud. Not needed for local Weaviate instances." + }, + + "contributor": { + "name": "Weaviate", + "github": "weaviate", + "url": "https://weaviate.io" + }, + + "links": { + "repository": "https://github.com/weaviate/mcp-server-weaviate", + "homepage": "https://weaviate.io", + "documentation": "https://weaviate.io/developers/weaviate" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 079879ede443aea1150c68409176b6c219631ff9 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:11:32 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for WEAVIATE_API_KEY) --- servers/io.weaviate-mcp.json | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/servers/io.weaviate-mcp.json b/servers/io.weaviate-mcp.json index 84d09ff..fd0deca 100644 --- a/servers/io.weaviate-mcp.json +++ b/servers/io.weaviate-mcp.json @@ -6,13 +6,24 @@ "description": "Manage Weaviate vector database collections and objects. Create schemas, insert data, run vector and hybrid searches with filtering.", "icon": "https://avatars.githubusercontent.com/u/37794290?v=4", "schema_version": "2.1", - "categories": ["database", "ai-ml"], - "tags": ["weaviate", "vector-database", "semantic-search", "embeddings", "rag", "hybrid-search"], - + "categories": [ + "database", + "ai-ml" + ], + "tags": [ + "weaviate", + "vector-database", + "semantic-search", + "embeddings", + "rag", + "hybrid-search" + ], "transport": { "type": "stdio", "command": "uvx", - "args": ["mcp-server-weaviate"], + "args": [ + "mcp-server-weaviate" + ], "env": { "WEAVIATE_URL": "${input:WEAVIATE_URL}", "WEAVIATE_API_KEY": "${input:WEAVIATE_API_KEY}" @@ -32,7 +43,7 @@ "id": "WEAVIATE_API_KEY", "label": "Weaviate API Key", "description": "API key for Weaviate Cloud. Not required for local instances.", - "type": "password", + "type": "text", "required": false, "secret": true, "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -45,26 +56,23 @@ ] } }, - "auth": { "type": "optional_api_key", "instructions": "API key required for Weaviate Cloud. Not needed for local Weaviate instances." }, - "contributor": { "name": "Weaviate", "github": "weaviate", "url": "https://weaviate.io" }, - "links": { "repository": "https://github.com/weaviate/mcp-server-weaviate", "homepage": "https://weaviate.io", "documentation": "https://weaviate.io/developers/weaviate" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 61e7f864153f993d4e5101c9d725104bd444b100 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:46:19 +0800 Subject: [PATCH 3/3] 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 --- servers/{io.weaviate-mcp.json => io.weaviate-mcp-uvx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{io.weaviate-mcp.json => io.weaviate-mcp-uvx.json} (97%) diff --git a/servers/io.weaviate-mcp.json b/servers/io.weaviate-mcp-uvx.json similarity index 97% rename from servers/io.weaviate-mcp.json rename to servers/io.weaviate-mcp-uvx.json index fd0deca..ca0d861 100644 --- a/servers/io.weaviate-mcp.json +++ b/servers/io.weaviate-mcp-uvx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "io.weaviate-mcp", - "name": "Weaviate", + "id": "io.weaviate-mcp-uvx", + "name": "Weaviate (uvx)", "alias": "weaviate", "description": "Manage Weaviate vector database collections and objects. Create schemas, insert data, run vector and hybrid searches with filtering.", "icon": "https://avatars.githubusercontent.com/u/37794290?v=4",