By pinecone-io
Manage Pinecone vector indexes and build RAG applications from within Claude Code: create and query indexes, upsert vectors, run semantic/hybrid search, and set up document Q&A with Assistants—all via CLI, natural language commands, or an MCP server.
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".
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, and full control over Pinecone resources.
Curated documentation reference for developers building with Pinecone. Contains links to official docs organized by topic and data format references. Use when writing Pinecone code, looking up API parameters, or needing the correct format for vectors or records.
Create, ingest into, and query a Pinecone full-text-search (FTS) index using the preview API (2026-01.alpha, public preview). Use when the user or agent asks to build a text search index on Pinecone, add dense or sparse vector fields, ingest documents, construct score_by clauses (text / query_string / dense_vector / sparse_vector), or compose with text-match filters ($match_phrase / $match_all / $match_any). Ships `scripts/ingest.py` for safe bulk ingestion (batch_upsert + error inspection + readiness polling); query construction is documented inline in this skill — write `documents.search(...)` calls directly, validated against `pc.preview.indexes.describe(...)` output.
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.
Requires secrets
Needs API keys or credentials to function
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A lightweight plugin that integrates Pinecone vector database capabilities directly into Claude Code, enabling semantic search, index management, and RAG (Retrieval Augmented Generation) workflows.
Install from the official Claude Code Plugins Directory:
Install the plugin:
/plugin install pinecone
Restart Claude Code to activate the plugin.
Alternatively, install directly from the Pinecone marketplace:
Add the Pinecone plugin marketplace:
/plugin marketplace add pinecone-io/pinecone-claude-code-plugin
Install the plugin:
/plugin install pinecone@pinecone-claude-code-plugin
When prompted, select your preferred installation scope:
Restart Claude Code to activate the plugin.
After installing via either method, configure your Pinecone API key before running Claude Code:
export PINECONE_API_KEY="your-api-key-here"
Don't have a Pinecone account? Sign up for free at app.pinecone.io
To use Pinecone Assistant functionality, you must have uv installed. uv is a fast Python package and project manager:
macOS and Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
Windows:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
With Homebrew:
brew install uv
After installation, restart your terminal and verify with: uv --version
Full installation guide: https://docs.astral.sh/uv/getting-started/installation/
For additional command-line capabilities, install the Pinecone CLI:
brew tap pinecone-io/tap
brew install pinecone-io/tap/pinecone
/pinecone:helpOverview of all available Pinecone skills and what you need to get started. Run this when first installing the plugin.
/pinecone:quickstartInteractive quickstart for new developers. Choose between two paths:
/pinecone:queryQuery integrated indexes using natural language. Wraps the Pinecone MCP server for easy searching.
/pinecone:query query [your search text] index [indexName] namespace [ns] reranker [rerankModel]
Note: Only works with integrated indexes that use Pinecone's hosted embedding models.
/pinecone:full-text-searchEnd-to-end workflow for Pinecone's full-text-search (FTS) preview API (2026-01.alpha) — design a document schema, ingest a corpus, and construct documents.search(...) calls. Covers BM25 (text / query_string), dense_vector and sparse_vector scoring, and text-match filters ($match_phrase / $match_all / $match_any) for hybrid lexical+semantic queries.
Ships a scripts/ingest.py helper that does bulk batch_upsert with per-batch error inspection and post-upsert readiness polling — the three things bare-LLM ingest code reliably skips.
Requires
pineconePython SDK ≥ 9.0. The FTS document-schema API lives underpinecone.preview.
/pinecone:assistantAll-in-one skill for Pinecone Assistants — create, upload, sync, chat, context retrieval, and list. Works with both slash commands and natural language:
Learn more: https://docs.pinecone.io/guides/assistant/quickstart
/pinecone:cliGuide for using the Pinecone CLI (pc) to manage resources from the terminal. The CLI supports all index types and vector operations.
/pinecone:mcpnpx claudepluginhub pinecone-io/pinecone-claude-code-plugin --plugin pineconeAgent skills for Qdrant vector search: scaling, performance optimization, search quality, monitoring, deployment, model migration, version upgrades, and SDK usage
Manage vector embeddings and similarity search
Weaviate plugin for Claude Coding
Cloudflare Vectorize vector database for semantic search and RAG. Use for vector indexes, embeddings, similarity search, or encountering dimension mismatches, filter errors.
OpenRAG agent skills: guided installation and SDK integration helpers.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.