Version 4.43 or later needs to be installed to add the server automatically
About
Pinecone Assistant MCP server.
Attribute | Details |
---|---|
Docker Image | mcp/pinecone |
Author | pinecone-io |
Repository | https://github.com/pinecone-io/assistant-mcp |
Dockerfile | https://github.com/pinecone-io/assistant-mcp/blob/main/Dockerfile |
Docker Image built by | Docker Inc. |
Docker Scout Health Score | |
Verify Signature | COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/pinecone --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub |
Licence | MIT License |
Tools provided by this Server | Short Description |
---|---|
assistant_context | Retrieves relevant document snippets from your Pinecone Assistant knowledge base. |
assistant_context
Retrieves relevant document snippets from your Pinecone Assistant knowledge base. Returns an array of text snippets from the most relevant documents. You can use the 'top_k' parameter to control result count (default: 15). Recommended top_k: a few (5-8) for simple/narrow queries, 10-20 for complex/broad topics.
Parameters | Type | Description |
---|---|---|
assistant_name | string | Name of an existing Pinecone assistant |
query | string | The query to retrieve context for. |
top_k | integer optional | The number of context snippets to retrieve. Defaults to 15. |
{
"mcpServers": {
"pinecone": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"PINECONE_ASSISTANT_HOST",
"-e",
"PINECONE_API_KEY",
"mcp/pinecone"
],
"env": {
"PINECONE_ASSISTANT_HOST": "<YOUR_PINECONE_ASSISTANT_HOST_HERE>",
"PINECONE_API_KEY": "<YOUR_PINECONE_API_KEY_HERE>"
}
}
}
}
Manual installation
You can install the MCP server using:
Installation for