Back
Marketplace/Pinecone

TL;DR

Pinecone is a Databases MCP server that lets Claude Code, Cursor, Windsurf and any MCP-compatible AI agent vector database for AI embeddings. Install in 1 minute with mcpizy install pinecone.

🌲

Pinecone

5 tools

Databases

Last updated May 30, 2026 · By MCPizy team

Vector database for AI embeddings

Official homepage

Install Pinecone

Via MCPizy CLI (recommended):
mcpizy install pinecone
Or run directly:
npx -y pinecone-mcp

Tools exposed

5 tools available
list_indexes

List all Pinecone indexes

create_index

Create a new index

Inputs

  • namestringrequired
  • dimensionnumberrequired
  • metricstringoptional
upsert_vectors

Insert or update vectors into an index

Inputs

  • index_namestringrequired
  • vectorsobject[]required
query_vectors

Query nearest vectors to an input

Inputs

  • index_namestringrequired
  • vectornumber[]required
  • top_knumberoptional
delete_vectors

Delete vectors by ID

Inputs

  • index_namestringrequired
  • idsstring[]required

Configuration

Works identically across clients. Only the config file path differs.

Claude Code~/.claude.json
{
  "mcpServers": {
    "pinecone": {
      "command": "npx",
      "args": [
        "-y",
        "@pinecone-database/mcp"
      ],
      "env": {
        "PINECONE_API_KEY": "..."
      }
    }
  }
}
Cursor.cursor/mcp.json
{
  "mcpServers": {
    "pinecone": {
      "command": "npx",
      "args": [
        "-y",
        "@pinecone-database/mcp"
      ],
      "env": {
        "PINECONE_API_KEY": "..."
      }
    }
  }
}
Windsurf~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "pinecone": {
      "command": "npx",
      "args": [
        "-y",
        "@pinecone-database/mcp"
      ],
      "env": {
        "PINECONE_API_KEY": "..."
      }
    }
  }
}

Authentication setup

  1. 1

    Copy your API key from the Pinecone console

    Get it PINECONE_API_KEY

What you can do with Pinecone MCP

Paste any of these prompts into Claude Code, Cursor or another MCP-compatible client.

“List every index I have and their dimension”

Uses: list_indexes

“Create a 1536-dim index named 'docs' for OpenAI embeddings”

Uses: create_index

“Find the 5 most similar vectors to this embedding in my 'docs' index”

Uses: query_vectors

Works with

Claude Code
Claude Desktop
Cursor
Windsurf
VS Code + Copilot
Any MCP Client

More Databases MCPs

⚡

DynamoDB

AWS DynamoDB NoSQL database operations

🐬

MariaDB

MariaDB relational database server

🪳

CockroachDB

Distributed SQL database for cloud apps

🗃️

SQLite

Local SQLite database access and management

Alternatives to Pinecone

If Pinecone doesn't fit your stack, these Databases MCP servers solve similar problems.

🔵

Neo4j

Graph database queries

🔍

Elasticsearch

Full-text search and analytics engine

🎯

Qdrant

Vector similarity search engine

Key Takeaways

  • Pinecone exposes 5 tools for databases workflows in Claude Code, Cursor and Windsurf.
  • Authentication: 1 step (PINECONE_API_KEY).
  • Install in 1 command: mcpizy install pinecone — config written to your client automatically.
  • Free and open source — verified compatible with every MCP client (Claude Code, Claude Desktop, Cursor, Windsurf, VS Code + Copilot).
  • Best use case: "List every index I have and their dimension".

Frequently asked questions

What is the Pinecone MCP server?

The Pinecone MCP server is an Databases Model Context Protocol server that lets Claude Code, Cursor, Windsurf, VS Code with Copilot, and other MCP-compatible AI agents vector database for AI embeddings. It exposes Pinecone's capabilities as tools the AI can call directly from your editor or CLI.

How do I install Pinecone MCP with Claude Code?

The fastest way is the MCPizy CLI: run `mcpizy install pinecone` and MCPizy will add the server to your `.claude.json` automatically. You can also install it manually by adding an entry under `mcpServers` in `.claude.json` with the command `npx -y pinecone-mcp` and restarting Claude Code.

Is Pinecone MCP free?

Yes. The Pinecone MCP server is free and open source. You may still need a Pinecone account or API key to connect the server to the underlying service, but the MCP layer itself has no MCPizy subscription cost.

Does Pinecone MCP work with Cursor and Windsurf?

Yes. Any MCP-compatible client works — including Claude Code, Claude Desktop, Cursor (via `.cursor/mcp.json`), Windsurf, VS Code with Copilot Chat, and custom agents built on the MCP SDK. The same install command targets all of them; only the config file path differs.

What can I do with Pinecone MCP?

Once installed, your AI agent can vector database for AI embeddings directly inside your conversation. Typical use cases include asking Claude Code or Cursor to run Pinecone operations, inspect results, chain Pinecone with other MCP servers (see our Workflow Recipes), and automate repetitive databases tasks without leaving your editor.

Manage all your MCPs in one place

Monitor usage, track costs, and discover new MCPs.

Get Started Free