A lightweight plugin that integrates Pinecone vector database capabilities directly into Claude Code, enabling semantic search, index management, and RAG (Retrieval Augmented Generation) workflows.
FAQ
pinecone is a Claude Code plugin with 9 hand-picked skills for data work, indexed on Flowy. Install it with the command on its page. It includes assistant, cli, docs. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add pinecone-io/pinecone-claude-code-plugin> /plugin install pinecone@pinecone-plugins
Repo: pinecone-io/pinecone-claude-code-plugin
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:mcpReference for all Pinecone MCP server tools โ parameters, usage, and examples.
/pinecone:docsCurated documentation reference with links to official docs organized by topic and data format references.
The plugin includes the full Pinecone MCP Server with the following tools:
| Tool | Description |
|---|---|
list-indexes | List all available Pinecone indexes |
describe-index | Get index configuration and namespaces |
describe-index-stats | Get statistics including record counts and namespaces |
search-records | Search records with optional metadata filtering and reranking |
create-index-for-model | Create a new index with integrated embeddings |
upsert-records | Insert or update records in an index |
rerank-documents | Rerank documents using a specified reranking model |
For complete MCP server documentation, visit: Pinecone MCP Server Guide
Make sure your PINECONE_API_KEY environment variable is set correctly:
echo $PINECONE_API_KEY
If it's empty, set it and restart Claude Code.
npx)The /query command only works with integrated indexes that use Pinecone's hosted embedding models. If you're using external embedding providers (OpenAI, HuggingFace, etc.), you'll need to use the MCP tools directly or wait for expanded support.
Make sure you have uv installed. uv is required for all assistant commands:
# Verify uv is installed
uv --version
# Install if missing
curl -LsSf https://astral.sh/uv/install.sh | sh # macOS/Linux
After installing uv, restart your terminal.
pinecone ยท semantic search ยท vector search ยท vector database ยท retrieval ยท RAG ยท agentic RAG ยท sparse search ยท document Q&A ยท citations ยท assistant ยท managed RAG
MIT License โ see LICENSE for details.
Have fun and enjoy developing with Pinecone! ๐ฒ
.claude-plugin/
marketplace.json
plugin.json
.github/
workflows/
claude.yml
contextualize-skills.yml
release.yml
.gitignore
.mcp.json
CHANGELOG.md
CLAUDE.md
commands/
join-discord.md
hooks/
hooks.json
pinecone-api-key-check.sh
LICENSE
README.md
skills/
assistant/
references/
chat.md
create.md
upload.md
scripts/
chat.py
context.py
create.py
list.py
sync.py
upload.py
SKILL.md
cli/
references/
command-reference.md
troubleshooting.md
SKILL.md
docs/
references/
data-formats.md
SKILL.md
full-text-search/
references/
ingestion.md
onboarding-walkthrough.md
querying.md
schema-design.md
scripts/
ingest.py
SKILL.md
help/
SKILL.md
mcp/
SKILL.md
n8n/
SKILL.md
query/
SKILL.md
quickstart/
scripts/
quickstart_complete.py
upsert.py
SKILL.mdยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic