Back to Catalog

assistant-mcp

pinecone-io/assistant-mcp
🔗 Latest commit:7e32e35
🕒 Updated:Sep 9, 2025, 01:06 PM
Rust
AI Tools

Pinecone Assistant MCP server

MCP Trust Score
Based on our comprehensive evaluation criteria
🤖 Evaluated by gemini-2.5-flashFix
Trust Score54/100
GitHub Metrics
Repository statistics and activity
⭐ GitHub Stars:33
👥 Contributors:1
📋 Total Issues:0
📦 Has Releases:Yes
🔧 Has CI/CD Pipeline:No
Configuration
Configuration example extracted from README.md for Claude Desktop and other clients.
🤖 Evaluated by gemini-2.5-flashFix
{
  "pinecone-assistant-mcp-docker": {
    "command": "docker",
    "args": [
      "run",
      "-i",
      "--rm",
      "-e",
      "PINECONE_API_KEY=<YOUR_PINECONE_API_KEY_HERE>",
      "-e",
      "PINECONE_ASSISTANT_HOST=<YOUR_PINE_ASSISTANT_HOST_HERE>",
      "pinecone/assistant-mcp"
    ],
    "env": {
      "PINECONE_API_KEY": "<YOUR_PINECONE_API_KEY_HERE>",
      "PINECONE_ASSISTANT_HOST": "<YOUR_PINE_ASSISTANT_HOST_HERE>"
    }
  },
  "pinecone-assistant": {
    "command": "docker",
    "args": [
      "run",
      "-i",
      "--rm",
      "-e",
      "PINECONE_API_KEY",
      "-e",
      "PINECONE_ASSISTANT_HOST",
      "pinecone/assistant-mcp"
    ],
    "env": {
      "PINECONE_API_KEY": "<YOUR_PINECONE_API_KEY_HERE>",
      "PINECONE_ASSISTANT_HOST": "<YOUR_PINECONE_ASSISTANT_HOST_HERE>"
    }
  },
  "assistant-mcp-source": {
    "command": "./target/release/assistant-mcp",
    "args": [],
    "env": {
      "PINECONE_API_KEY": "<YOUR_PINECONE_API_KEY_HERE>",
      "PINECONE_ASSISTANT_HOST": "<YOUR_PINECONE_ASSISTANT_HOST_HERE>"
    }
  },
  "assistant-mcp-inspector-cargo": {
    "command": "npx",
    "args": [
      "@modelcontextprotocol/inspector",
      "cargo",
      "run"
    ],
    "env": {
      "PINECONE_API_KEY": "<YOUR_PINECONE_API_KEY_HERE>",
      "PINECONE_ASSISTANT_HOST": "<YOUR_PINECONE_ASSISTANT_HOST_HERE>"
    }
  },
  "pinecone-assistant-mcp-inspector-docker": {
    "command": "npx",
    "args": [
      "@modelcontextprotocol/inspector",
      "--",
      "docker",
      "run",
      "-i",
      "--rm",
      "-e",
      "PINECONE_API_KEY",
      "-e",
      "PINECONE_ASSISTANT_HOST",
      "pinecone/assistant-mcp"
    ],
    "env": {
      "PINECONE_API_KEY": "<YOUR_PINECONE_API_KEY_HERE>",
      "PINECONE_ASSISTANT_HOST": "<YOUR_PINECONE_ASSISTANT_HOST_HERE>"
    }
  }
}
MCP Protocol Support
Implemented MCP protocol features
🤖 Evaluated by gemini-2.5-flashFix
Tools:
Prompts:
Resources:
Sampling:
Roots:
Logging:
STDIO Transport:
HTTP Transport:
OAuth2 Auth:
Dependencies
10 dependencies
Libraries and frameworks used by this MCP server
🤖 Evaluated by gemini-2.5-flashFix
Add Quality Badge
Show your MCP trust score in your README
Trust Score Badge
[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/pinecone-io/assistant-mcp)](https://archestra.ai/mcp-catalog/pinecone-io__assistant-mcp)
README.md

Pinecone Assistant MCP Server

An MCP server implementation for retrieving information from Pinecone Assistant.

Features

  • Retrieves information from Pinecone Assistant
  • Supports multiple results retrieval with a configurable number of results

Prerequisites

  • Docker installed on your system
  • Pinecone API key - obtain from the Pinecone Console
  • Pinecone Assistant API host - after creating an Assistant (e.g. in Pinecone Console), you can find the host in the Assistant details page

Building with Docker

To build the Docker image:

docker build -t pinecone/assistant-mcp .

Running with Docker

Run the server with your Pinecone API key:

docker run -i --rm \
  -e PINECONE_API_KEY=<YOUR_PINECONE_API_KEY_HERE> \
  -e PINECONE_ASSISTANT_HOST=<YOUR_PINECONE_ASSISTANT_HOST_HERE> \
  pinecone/assistant-mcp

Environment Variables

  • PINECONE_API_KEY (required): Your Pinecone API key
  • PINECONE_ASSISTANT_HOST (optional): Pinecone Assistant API host (default: https://prod-1-data.ke.pinecone.io)
  • LOG_LEVEL (optional): Logging level (default: info)

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "pinecone-assistant": {
      "command": "docker",
      "args": [
        "run", 
        "-i", 
        "--rm", 
        "-e", 
        "PINECONE_API_KEY", 
        "-e", 
        "PINECONE_ASSISTANT_HOST", 
        "pinecone/assistant-mcp"
      ],
      "env": {
        "PINECONE_API_KEY": "<YOUR_PINECONE_API_KEY_HERE>",
        "PINECONE_ASSISTANT_HOST": "<YOUR_PINECONE_ASSISTANT_HOST_HERE>"
      }
    }
  }
}

Building from Source

If you prefer to build from source without Docker:

  1. Make sure you have Rust installed (https://rustup.rs/)
  2. Clone this repository
  3. Run cargo build --release
  4. The binary will be available at target/release/assistant-mcp

Testing with the inspector

export PINECONE_API_KEY=<YOUR_PINECONE_API_KEY_HERE>
export PINECONE_ASSISTANT_HOST=<YOUR_PINECONE_ASSISTANT_HOST_HERE>
# Run the inspector alone
npx @modelcontextprotocol/inspector cargo run
# Or run with Docker directly through the inspector
npx @modelcontextprotocol/inspector -- docker run -i --rm -e PINECONE_API_KEY -e PINECONE_ASSISTANT_HOST pinecone/assistant-mcp

License

This project is licensed under the terms specified in the LICENSE file.

assistant-mcp MCP Server | Documentation & Integration | Archestra