skills/pinecone-mcp/SKILL.md
Reference for the Pinecone MCP server tools. Documents all available tools - list-indexes, describe-index, describe-index-stats, create-index-for-model, upsert-records, search-records, cascading-search, and rerank-documents. Use when an agent needs to understand what Pinecone MCP tools are available, how to use them, or what parameters they accept.
npx skillsauth add pinecone-io/skills pinecone-mcpInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The Pinecone MCP server exposes the following tools to AI agents and IDEs. For setup and installation instructions, see the MCP server guide.
Key Limitation: The Pinecone MCP only supports integrated indexes — indexes created with a built-in Pinecone embedding model. It does not work with standard indexes using external embedding models. For those, use the Pinecone CLI.
list-indexesList all indexes in the current Pinecone project.
describe-indexGet configuration details for a specific index — cloud, region, dimension, metric, embedding model, field map, and status.
Parameters:
name (required) — Index namedescribe-index-statsGet statistics for an index including total record count and per-namespace breakdown.
Parameters:
name (required) — Index namecreate-index-for-modelCreate a new serverless index with an integrated embedding model. Pinecone handles embedding automatically — no external model needed.
Parameters:
name (required) — Index namecloud (required) — aws, gcp, or azureregion (required) — Cloud region (e.g. us-east-1)embed.model (required) — Embedding model: llama-text-embed-v2, multilingual-e5-large, or pinecone-sparse-english-v0embed.fieldMap.text (required) — The record field that contains text to embed (e.g. chunk_text)upsert-recordsInsert or update records in an integrated index. Records are automatically embedded using the index's configured model.
Parameters:
name (required) — Index namenamespace (required) — Namespace to upsert intorecords (required) — Array of records. Each record must have an id or _id field and contain the text field specified in the index's fieldMap. Do not nest fields under metadata — put them directly on the record.Example record:
{ "_id": "rec1", "chunk_text": "The Eiffel Tower was built in 1889.", "category": "architecture" }
search-recordsSemantic text search against an integrated index. Pass plain text — the MCP embeds the query automatically using the index's model.
Parameters:
name (required) — Index namenamespace (required) — Namespace to searchquery.inputs.text (required) — The text queryquery.topK (required) — Number of results to returnquery.filter (optional) — Metadata filter using MongoDB-style operators ($eq, $ne, $in, $gt, $gte, $lt, $lte)rerank.model (optional) — Reranking model: bge-reranker-v2-m3, cohere-rerank-3.5, or pinecone-rerank-v0rerank.rankFields (optional) — Fields to rerank on (e.g. ["chunk_text"])rerank.topN (optional) — Number of results to return after rerankingcascading-searchSearch across multiple indexes simultaneously, then deduplicate and rerank results into a single ranked list.
Parameters:
indexes (required) — Array of { name, namespace } objects to search acrossquery.inputs.text (required) — The text queryquery.topK (required) — Number of results to retrieve per index before rerankingrerank.model (required) — Reranking model: bge-reranker-v2-m3, cohere-rerank-3.5, or pinecone-rerank-v0rerank.rankFields (required) — Fields to rerank onrerank.topN (optional) — Final number of results to return after rerankingrerank-documentsRerank a set of documents or records against a query without performing a vector search first.
Parameters:
model (required) — bge-reranker-v2-m3, cohere-rerank-3.5, or pinecone-rerank-v0query (required) — The query to rerank againstdocuments (required) — Array of strings or records to rerankoptions.topN (required) — Number of results to returnoptions.rankFields (optional) — If documents are records, the field(s) to rerank ondevelopment
Build n8n workflows using the Pinecone Assistant node or Pinecone Vector Store node. Use when building RAG pipelines, chat-with-docs workflows, configuring Pinecone nodes in n8n, troubleshooting Pinecone n8n nodes, or asking about best practices for Pinecone in n8n.
data-ai
Overview of all available Pinecone skills and what a user needs to get started. Invoke when a user asks what skills are available, how to get started with Pinecone, or what they need to set up before using any Pinecone skill.
tools
Interactive Pinecone quickstart for new developers. Choose between two paths - Database (create an integrated index, upsert data, and query using Pinecone MCP + Python) or Assistant (create a Pinecone Assistant for document Q&A). Use when a user wants to get started with Pinecone for the first time or wants a guided tour of Pinecone's tools.
tools
Query integrated indexes using text with Pinecone MCP. IMPORTANT - This skill ONLY works with integrated indexes (indexes with built-in Pinecone embedding models like multilingual-e5-large). For standard indexes or advanced vector operations, use the CLI skill instead. Requires PINECONE_API_KEY environment variable and Pinecone MCP server to be configured.