
Pinecone:Docs
- 4 installs
- 67 repo stars
- Updated July 17, 2026
- pinecone-io/pinecone-claude-code-plugin
A curated documentation reference that links official Pinecone docs by topic and fetches live pages for API parameters and data formats.
About
Provides a topic-organized index of Pinecone documentation and instructs the agent to fetch the relevant live page for the task. A developer uses it when writing Pinecone code or looking up API and record formats.
- Curated index of official Pinecone docs by topic
- Fetches live pages rather than relying on training data
Pinecone:Docs by the numbers
- 4 all-time installs (skills.sh)
- Ranked #1,241 of 1,879 Documentation skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/pinecone-io/pinecone-claude-code-plugin --skill pineconedocsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 4 |
|---|---|
| repo stars | ★ 67 |
| Last updated | July 17, 2026 |
| Repository | pinecone-io/pinecone-claude-code-plugin ↗ |
What it does
A curated documentation reference that links official Pinecone docs by topic and fetches live pages for API parameters and data formats.
Files
Pinecone Developer Reference
A curated index of Pinecone documentation. Fetch the relevant page(s) for the task at hand rather than relying on training data.
---
NOTE TO AGENT
Please attempt to fetch the url listed when relevant. If you run into an error, please attempt to append ".md" to the url to retrieve the markdown version of the Docs page.
In case you need it: A full reference to ALL relevant URLs can be found here: https://docs.pinecone.io/llms.txt
Use this as a last resort if you cannot find the relevant page below.
---
Getting Started
| Topic | URL |
|---|---|
| Quickstart for all languages and coding environments (Cursor, Claude Code, n8n, Python, JavaScript, Java, Go, C#) | https://docs.pinecone.io/guides/get-started/quickstart |
| Pinecone concepts — namespaces, terminology, and key database concepts | https://docs.pinecone.io/guides/get-started/concepts |
| Data modeling for text and vectors | https://docs.pinecone.io/guides/index-data/data-modeling |
| Architecture of Pinecone | https://docs.pinecone.io/guides/get-started/database-architecture |
| Pinecone Assistant overview | https://docs.pinecone.io/guides/assistant/overview |
---
Indexes
| Topic | URL |
|---|---|
| Create an index | https://docs.pinecone.io/guides/index-data/create-an-index |
| Index types and conceptual overview | https://docs.pinecone.io/guides/index-data/indexing-overview |
| Integrated inference (built-in embedding models) | https://docs.pinecone.io/guides/index-data/indexing-overview#integrated-embedding |
| Dedicated read nodes — predictable low-latency performance at high query volumes | https://docs.pinecone.io/guides/index-data/dedicated-read-nodes |
---
Upsert & Data
| Topic | URL |
|---|---|
| Upsert vectors and text | https://docs.pinecone.io/guides/index-data/upsert-data |
| Multitenancy with namespaces | https://docs.pinecone.io/guides/index-data/implement-multitenancy |
---
Search
| Topic | URL |
|---|---|
| Semantic search | https://docs.pinecone.io/guides/search/semantic-search |
| Hybrid search | https://docs.pinecone.io/guides/search/hybrid-search |
| Lexical search | https://docs.pinecone.io/guides/search/lexical-search |
Full-text search (preview) — document-schema FTS indexes with text / query_string / dense / sparse scoring | https://docs.pinecone.io/guides/search/full-text-search |
| Metadata filtering — narrow results and speed up searches | https://docs.pinecone.io/guides/search/filter-by-metadata |
---
API & SDK Reference
| Topic | URL |
|---|---|
| Python SDK reference | https://docs.pinecone.io/reference/sdks/python/overview |
| Example Colab notebooks | https://docs.pinecone.io/examples/notebooks |
---
Production
| Topic | URL |
|---|---|
| Production checklist — preparing your index for production | https://docs.pinecone.io/guides/production/production-checklist |
| Common errors and what they mean | https://docs.pinecone.io/guides/production/error-handling |
| Targeting indexes correctly — don't use index names in prod | https://docs.pinecone.io/guides/manage-data/target-an-index#target-by-index-host-recommended |
---
Data Formats
See references/data-formats.md for vector and record schemas.
Data Formats
Integrated Index Records
Used with upsert_records() (Python SDK) or upsert-records (MCP). Records are automatically embedded using the index's configured model.
JSON
[
{
"_id": "rec1",
"chunk_text": "Your text content here.",
"category": "example"
},
{
"_id": "rec2",
"chunk_text": "Another piece of text.",
"category": "example"
}
]_id— unique record identifier (required)- The text field name must match the index's
fieldMap(e.g.chunk_textiffieldMap: {text: "chunk_text"}) - All other fields are stored as metadata and can be used for filtering
- Do not nest extra fields under a
metadatakey — put them directly on the record
---
Standard Index Vectors
Used with upsert() (Python SDK) or pc index vector upsert (CLI).
JSON (with `vectors` array)
{
"vectors": [
{
"id": "vec1",
"values": [0.1, 0.2, 0.3],
"metadata": { "genre": "comedy", "year": 2021 }
},
{
"id": "vec2",
"values": [0.4, 0.5, 0.6],
"metadata": { "genre": "drama", "year": 2019 }
}
]
}JSONL (one vector per line)
{"id": "vec1", "values": [0.1, 0.2, 0.3], "metadata": {"genre": "comedy"}}
{"id": "vec2", "values": [0.4, 0.5, 0.6], "metadata": {"genre": "drama"}}id— unique vector identifier (required)values— dense vector as float array, length must match index dimension (required)metadata— arbitrary key-value pairs for filtering (optional)
---
Sparse Vectors
Used for keyword or hybrid search with sparse indexes.
{
"id": "vec1",
"values": [0.1, 0.2, 0.3],
"sparse_values": {
"indices": [10, 45, 316],
"values": [0.5, 0.3, 0.8]
},
"metadata": { "genre": "comedy" }
}sparse_values.indices— non-zero dimension indicessparse_values.values— corresponding float values, same length asindices