Skip to content

Commit edbdced

Browse files
authored
Add Vectara MCP server (#246)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 97585ca commit edbdced

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

servers/com.vectara-mcp-uvx.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": "com.vectara-mcp-uvx",
4+
"name": "Vectara (uvx)",
5+
"alias": "vectara",
6+
"description": "Connect to Vectara's Trusted RAG platform for retrieval-augmented generation and semantic search. Run grounded RAG queries, search corpora, correct hallucinations, and evaluate factual consistency.",
7+
"logo": "https://avatars.githubusercontent.com/u/108304503?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"ai-ml",
11+
"search"
12+
],
13+
"tags": [
14+
"vectara",
15+
"rag",
16+
"semantic-search",
17+
"retrieval",
18+
"ai",
19+
"grounded-generation"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "uvx",
24+
"args": [
25+
"vectara-mcp",
26+
"--stdio"
27+
],
28+
"env": {
29+
"VECTARA_API_KEY": "${input:VECTARA_API_KEY}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "VECTARA_API_KEY",
35+
"label": "Vectara API Key",
36+
"description": "Your Vectara API key, used by all tools to authenticate against the Vectara platform. Read-only query keys start with 'zqt_'; keys with both query and index access start with 'zwt_'.",
37+
"type": "text",
38+
"required": true,
39+
"secret": true,
40+
"placeholder": "zwt_****************",
41+
"obtain": {
42+
"url": "https://console.vectara.com/console/apiKeys",
43+
"instructions": "1. Sign in to the Vectara Console\n2. Open the API Keys section\n3. Create a new API key (or a Personal API key)\n4. Copy the key value",
44+
"button_label": "Create API Key"
45+
}
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "api_key",
52+
"instructions": "Create a Vectara API key in the Vectara Console at https://console.vectara.com/console/apiKeys and provide it as VECTARA_API_KEY."
53+
},
54+
"contributor": {
55+
"name": "Vectara",
56+
"github": "vectara",
57+
"url": "https://www.vectara.com"
58+
},
59+
"links": {
60+
"repository": "https://github.com/vectara/vectara-mcp",
61+
"homepage": "https://www.vectara.com",
62+
"documentation": "https://github.com/vectara/vectara-mcp#readme"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": false
72+
},
73+
"changelog_url": "https://github.com/vectara/vectara-mcp/blob/main/CHANGELOG.md"
74+
}

0 commit comments

Comments
 (0)