By pinecone-io
Manage Pinecone vector indexes: create, describe, upsert/query vectors via MCP server and slash commands. Build RAG assistants for document Q&A with citations, quickstart Python projects, explore integrated indexes, and automate CLI ops for semantic search and recommendation apps.
npx claudepluginhub pinecone-io/pinecone-claude-code-plugin --plugin pineconeCreate, 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.
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.
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.
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.
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.
Local knowledge search CLI — index documents and search them using BM25 full-text search, vector embeddings, and LLM-powered Q&A, all running locally with no external dependencies.
Agent skills for Qdrant vector search: scaling, performance optimization, search quality, monitoring, deployment, model migration, version upgrades, and SDK usage
OpenRAG agent skills: guided installation and SDK integration helpers.
Requires secrets
Needs API keys or credentials to function
Share bugs, ideas, or general feedback.
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:mcpOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claim