Pinecone Assistant

Pinecone Assistant

Pinecone Assistant MCP server.

10K+

1 Tool

Packaged by
Requires Secrets
Add to Docker Desktop

Version 4.43 or later needs to be installed to add the server automatically

About

Pinecone Assistant MCP Server

Pinecone Assistant MCP server.

What is an MCP Server?

MCP Info

Image Building Info

AttributeDetails
Dockerfilehttps://github.com/pinecone-io/assistant-mcp/blob/7e32e35c20fe3f79d2504d4371f28e1b1eb34009/Dockerfile
Commit7e32e35c20fe3f79d2504d4371f28e1b1eb34009
Docker Image built byDocker Inc.
Docker Scout Health ScoreDocker Scout Health Score
Verify SignatureCOSIGN_REPOSITORY=mcp/signatures cosign verify mcp/pinecone --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub
LicenceMIT License

Available Tools (1)

Tools provided by this ServerShort Description
assistant_contextRetrieves relevant document snippets from your Pinecone Assistant knowledge base.

Tools Details

Tool: 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.

ParametersTypeDescription
assistant_namestringName of an existing Pinecone assistant
querystringThe query to retrieve context for.
top_kintegeroptionalThe number of context snippets to retrieve. Defaults to 15.

Use this MCP Server

{
  "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>"
      }
    }
  }
}

Why is it safer to run MCP Servers with Docker?

Related servers