Description

Model Context Protocol server to allow for reading and writing from Pinecone. Rudimentary RAG implementation.

Installation

npx -y mcp-pinecone
npm install mcp-pinecone
git clone https://github.com/sirmews/mcp-pinecone

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "mcp-pinecone": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-pinecone"
      ]
    }
  }
}