Skip to content

Commit c3532e1

Browse files
authored
feat: add Pinecone MCP server definition (#60)
* Add Pinecone MCP server definition Official Pinecone MCP server for vector database operations. Manage indexes, upsert vectors, and query by semantic similarity. Uses @pinecone-database/mcp. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for PINECONE_API_KEY) * fix: rename server files with transport suffix - io.pinecone-mcp.json -> io.pinecone-mcp-npx.json (id: io.pinecone-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 662d1bb commit c3532e1

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

servers/io.pinecone-mcp-npx.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "io.pinecone-mcp-npx",
4+
"name": "Pinecone (npx)",
5+
"alias": "pinecone",
6+
"description": "Manage Pinecone vector database indexes and records. Create indexes, upsert vectors, query by semantic similarity, and manage namespaces.",
7+
"icon": "https://avatars.githubusercontent.com/u/54333248?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"database",
11+
"ai-ml"
12+
],
13+
"tags": [
14+
"pinecone",
15+
"vector-database",
16+
"embeddings",
17+
"semantic-search",
18+
"rag"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@pinecone-database/mcp"
26+
],
27+
"env": {
28+
"PINECONE_API_KEY": "${input:PINECONE_API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "PINECONE_API_KEY",
34+
"label": "Pinecone API Key",
35+
"description": "API key for the Pinecone vector database service.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "pcsk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
40+
"obtain": {
41+
"url": "https://app.pinecone.io/",
42+
"instructions": "1. Go to app.pinecone.io and sign up\n2. Open your project\n3. Go to API Keys section\n4. Copy your API key",
43+
"button_label": "Get API Key"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Get a Pinecone API key at https://app.pinecone.io/"
52+
},
53+
"contributor": {
54+
"name": "Pinecone",
55+
"github": "pinecone-io",
56+
"url": "https://www.pinecone.io"
57+
},
58+
"links": {
59+
"repository": "https://github.com/pinecone-io/pinecone-mcp",
60+
"homepage": "https://www.pinecone.io",
61+
"documentation": "https://docs.pinecone.io/guides/operations/mcp-server"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": false,
69+
"prompts": false,
70+
"read_only_mode": false
71+
}
72+
}

0 commit comments

Comments
 (0)