Pinecone Assistant

Pinecone Assistant

Pinecone Assistant MCP server.

1.9K

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?

Characteristics

AttributeDetails
Docker Imagemcp/pinecone
Authorpinecone-io
Repositoryhttps://github.com/pinecone-io/assistant-mcp
Dockerfilehttps://github.com/pinecone-io/assistant-mcp/blob/main/Dockerfile
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?

Manual installation

You can install the MCP server using:

Installation for

Related servers