pinecone:help

A guide to the available Pinecone skills and their setup requirements. Pinecone is a vector database, which stores numerical representations of data so applications can find semantically similar text or items.

In plain words
What is it for?
Use it to get started with Pinecone tasks such as semantic search, retrieval-augmented generation, recommendations, and agent applications.
Why use it?
It explains which skills are available and what must be configured before using them, such as a Pinecone account and API key.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/pinecone-io/pinecone-claude-code-plugin/help
Any agent
npx skills add pinecone-io/pinecone-claude-code-plugin --skill help
Clone the repo
git clone --depth 1 https://github.com/pinecone-io/pinecone-claude-code-plugin

Made for: Claude Code, Codex.

Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 916 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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 $0.00053 $0.00916
Opus 5 $0.00026 $0.00458
Sonnet 5 $0.00011 $0.00183
Haiku 4.5 $0.00005 $0.00092

Measured 2d ago against content hash 4d7026e299a3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pinecone:help 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 2d 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.

skills/help/SKILL.md · 71 lines

How it starts

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

Pinecone Skills — Help & Overview

Pinecone is the leading vector database for building accurate and performant AI applications at scale in production. It's useful for building semantic search, retrieval augmented generation, recommendation systems, and agentic applications.

Here's everything you need to get started and a summary of all available skills.

Invoke any skill from chat with /pinecone:<skill-name> — for example /pinecone:quickstart or /pinecone:n8n.


What You Need

Required

  • Pinecone account — free to create at https://app.pinecone.io/?sessionType=signup
  • API key — create one in the Pinecone console after signing up, then make it available to this environment:
    • Run export PINECONE_API_KEY="your-key" in your terminal. Claude Code reads your shell environment, so this is enough.
  • To use a .env file instead, run scripts with uv run --env-file .env scripts/....

Optional (unlock more capabilities)

Tool What it enables Install
Pinecone MCP server Use Pinecone directly inside your AI agent/IDE without writing code Setup guide
Pinecone CLI (pc) Manage all index types from the terminal, batch operations, backups, CI/CD brew tap pinecone-io/tap && brew install pinecone-io/tap/pinecone
uv Run the packaged Python scripts included in these skills Install uv

Available Skills

Skill What it does
pinecone:quickstart Step-by-step onboarding — create an index, upload data, and run your first search
pinecone:query Search integrated indexes using natural language text via the Pinecone MCP
pinecone:cli Use the Pinecone CLI (pc) for terminal-based index and vector management
pinecone:assistant Create, manage, and chat with Pinecone Assistants for document Q&A with citations
pinecone:mcp Reference for all Pinecone MCP server tools and their parameters
pinecone:full-text-search Build a full-text-search index — schema design, safe bulk ingestion, and query construction (text / query_string / dense / sparse scoring with text-match and metadata filters). Preview API (2026-01.alpha); requires pinecone Python SDK ≥ 9.0.
pinecone:docs Curated links to official Pinecone documentation, organized by topic
pinecone:n8n Build n8n workflows with the Pinecone Assistant node or Pinecone Vector Store node, including best practices and full workflow JSON generation

Read the full file on GitHub · 71 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. 2d ago First seen · 71 lines · 53 tokens per session scan A 4d7026e299a3

Subscribe to this mod's changes

pinecone:help is a skill published in the GitHub repository pinecone-io/pinecone-claude-code-plugin (68 stars, last pushed 18d ago), licensed MIT. It adds 53 tokens to every session and 916 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

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

mcp-local-rag

Searches, saves, and maintains a local document index through a local RAG MCP server. Use when user says "search my docs", "save this page", "read around that chunk", "sync my index", or invokes npx mcp-local-rag.

shinpr/mcp-local-rag · 61 tokens

assistant

Create, manage, and chat with Pinecone Assistants for document Q&A with citations. Handles all assistant operations - create, upload, sync, chat, context retrieval, and list. Recognizes natural language like "create an assistant from my docs", "ask my assistant about X", or "upload my docs to Pinecone".

pinecone-io/gemini-cli-extension · 68 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/skills · 52 tokens

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/gemini-cli-extension · 76 tokens

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/gemini-cli-extension · 72 tokens