pinecone-mcp

pinecone-mcp is a skill for Claude Code, Codex from pinecone-io/skills. It costs 80 tokens per session (1,131 once invoked), scanned A, a copy of pinecone:mcp, MIT.

A reference for tools that manage Pinecone, a hosted database for searching text by meaning. It documents commands for indexes, stored records, searches, and result ranking.

In plain words
What is it for?
Use it to list, inspect, and create supported indexes; check index statistics; add and search records; run cascading searches; and rerank documents.
Why use it?
It helps an agent choose and use the available Pinecone tools correctly, including the limitation that they work only with Pinecone indexes using Pinecone's built-in embedding model.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to list, inspect, and create supported indexes; check index statistics; add and search records; run cascading searches; and rerank documents.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pinecone-io/skills/pinecone-mcp
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add pinecone-io/skills --skill pinecone-mcp
Clone the repo
git clone --depth 1 https://github.com/pinecone-io/skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pinecone-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/pinecone-io/skills/pinecone-mcp.svg)](https://agentmods.dev/skills/pinecone-io/skills/pinecone-mcp)
Your own site
<a href="https://agentmods.dev/skills/pinecone-io/skills/pinecone-mcp"><img src="https://agentmods.dev/badge/skills/pinecone-io/skills/pinecone-mcp.svg" alt="Measured on agentmods" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,131 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00080 $0.01131
Opus 5 $0.00040 $0.00566
Sonnet 5 $0.00016 $0.00226
Haiku 4.5 $0.00008 $0.00113

Measured 8d ago against content hash 4a091fac036c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

pinecone-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to pinecone:mcp — 3 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/pinecone-mcp/SKILL.md · 107 lines

How it starts

The opening of the file, as written. The whole thing — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pinecone MCP Tools Reference

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-indexes

List all indexes in the current Pinecone project.


describe-index

Get configuration details for a specific index — cloud, region, dimension, metric, embedding model, field map, and status.

Parameters:

  • name (required) — Index name

describe-index-stats

Get statistics for an index including total record count and per-namespace breakdown.

Parameters:

  • name (required) — Index name

create-index-for-model

Create a new serverless index with an integrated embedding model. Pinecone handles embedding automatically — no external model needed.

Parameters:

  • name (required) — Index name
  • cloud (required) — aws, gcp, or azure
  • region (required) — Cloud region (e.g. us-east-1)
  • embed.model (required) — Embedding model: llama-text-embed-v2, multilingual-e5-large, or pinecone-sparse-english-v0
  • embed.fieldMap.text (required) — The record field that contains text to embed (e.g. chunk_text)

upsert-records

Insert or update records in an integrated index. Records are automatically embedded using the index's configured model.

Parameters:

  • name (required) — Index name
  • namespace (required) — Namespace to upsert into
  • records (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" }

Read the full file on GitHub · 107 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 107 lines · 80 tokens per session scan A 4a091fac036c

Subscribe to this mod's changes

pinecone-mcp is a skill published in the GitHub repository pinecone-io/skills (15 stars, last pushed 4d ago), licensed MIT. It adds 80 tokens to every session and 1,131 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to pinecone:mcp, differing in 3 lines, and is treated as a copy.

Related

Other skills, from other repositories

pinecone:full-text-search

Create, ingest into, and query a Pinecone full-text-search (FTS) document index using the graduated document-schema API (Python SDK 10.0.0, API version 2026-07). Use when the user or agent asks to build a text search index on Pinecone, add dense or sparse vector fields, ingest documents, construct scoreby clauses…

pinecone-io/pinecone-claude-code-plugin · 163 tokens

pinecone:quickstart

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…

pinecone-io/pinecone-claude-code-plugin · 79 tokens

pinecone:cli

Guide for using the Pinecone CLI (pc) to manage Pinecone resources from the terminal. The CLI supports ALL index types (standard, integrated, sparse) and all vector operations — unlike the MCP which only supports integrated indexes. Use for batch operations, vector management, backups, namespaces, CI/CD automation…

pinecone-io/pinecone-claude-code-plugin · 75 tokens

pinecone:mcp

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…

pinecone-io/pinecone-claude-code-plugin · 80 tokens

pinecone:help

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.

pinecone-io/pinecone-claude-code-plugin · 53 tokens

help

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.

pinecone-io/gemini-cli-extension · 50 tokens