Skip to content

/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

From plugin
689 skills1 commands1 hooks1 MCP
shell
$ npx -y skills add pinecone-io/pinecone-claude-code-plugin --skill quickstart --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/quickstart
How auto-invocation works

Context preview

The summary Claude sees to decide when to auto-load this skill.

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

SKILL.md

quickstart.SKILL.md
name: pinecone:quickstart
description: 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.
allowed-tools: Skill(pinecone:assistant *), Bash, Read

Pinecone Quickstart

Welcome! This skill walks you through your first Pinecone experience using the tools available to you. In this quickstart, you will learn how to do a simple form of semantic search over some example data.

Prerequisites

Before starting either path, verify the API key works by calling `list-indexes` via the Pinecone MCP. If it succeeds, proceed. If it fails, ask the user to set their key:

export PINECONE_API_KEY="your-key"

Then retry `list-indexes` to confirm.

Step 0: Choose Your Path

Use AskUserQuestion to let the user choose their path:

  • **Database** – Build a vector search index. Best for developers who want to store and search embeddings. Uses the Pinecone MCP + a Python upsert script.
  • **Assistant** – Build a document Q&A assistant. Best for users who want to upload files and ask questions with cited answers. No code required.

---

Path A: Database Quickstart

For each step, explain to the user what will happen. An overview is here:

1. Check if MCP is set 2. Create an integrated index with MCP 3. Upsert sample data using the bundled script (9 sentences across productivity, health, and nature themes) 4. Run a semantic search query and explore further queries 5. Optionally try reranking 6. Offer the complete standalone script

Step 1 – Verify MCP is Available

The prerequisite check already called `list-indexes`. If it succeeded, the MCP is working — proceed to Step 2.

If it failed because MCP tools were unavailable (not an auth error):

  • Tell the user the MCP server needs to be configured
  • Point them to: https://docs.pinecone.io/reference/tools/mcp

Step 2 – Create an Integrated Index

Use the MCP `create-index-for-model` tool to create a serverless index with integrated embeddings:

name: quickstart-skills
cloud: aws
region: us-east-1
embed:
  model: llama-text-embed-v2
  fieldMap:
    text: chunk_text

**Explain to the user what's happening:**

  • An *integrated index* uses a built-in Pinecone embedding model (`llama-text-embed-v2`)
  • This means you send plain text and Pinecone handles the embedding automatically
  • The `field_map` tells Pinecone which field in your records contains the text to embed

Wait for the index to become ready before proceeding. Waiting a few seconds is sufficient.

Step 3 – Upsert Sample Data

Run the bundled upsert script to seed the index with sample records:

uv run scripts/upsert.py --index quickstart-skills

**Explain to the user what's happening:**

  • The script uploads 9 sample records across three themes: **productivity** (getting work done), **health** (feeling unwell), and **nature** (outdoors/wildlife)
  • The dataset is intentionally varied so semantic search can show its value — the queries below use completely different words than the records, but the right ones still surface
  • Each record has an `_id`, a `chunk_text` field (the text that gets embedded), and a `category` field
  • This is the same structure you'd use for your own data — just replace the records

Step 4 – Query with the MCP

Use the MCP `search-records` tool to run the first semantic search:

index: quickstart-skills
namespace: example-namespace
query:
  topK: 3
  inputs:
    text: "getting things done efficiently"

Display the results in a clean table: ID, score, and `chunk_text`.

**Explain to the user what's happening:**

  • Notice the query shares no keywords with the records — but it surfaces the productivity sentences
  • That's semantic search: it finds meaning, not just matching words
  • You sent plain text — Pinecone embedded the query using the same model as the index

**Offer to explore further:** Use AskUserQuestion to ask if they'd like to try another query:

  • Option A: `"feeling under the weather"` — should surface the health records
  • Option B: `"wildlife spotting outside"` — should surface the nature records
  • Option C: No thanks, move on

Run whichever query they choose and display the results the same way. If they want to try both, do both. After each result, point out which theme surfaced and why.

If they decline or are done exploring, proceed to Step 5 or offer to skip ahead to the complete script.

Step 5 – Try Reranking (Optional)

Use AskUserQuestion to ask if the user wants to try reranking.

If yes, use `search-records` again with reranking enabled:

rerank:
  model: bge-reranker-v2-m3
  rankFields: [chunk_text]
  topN: 3

**Explain**: Reranking runs a second-pass model over the results to improve relevance ordering.

Step 6 – Wrap Up

Congratulate the user on completing the quickstart. Use AskUserQuestion to ask if they'd like a standalone Python script that does everything in one go — create index, upsert, query, and rerank.

If yes, copy it to their working directory:

cp scripts/quickstart_complete.py ./pinecone_quickstart.py

Tell the user:

  • The script is at `./pinecone_quickstart.py`
  • Run it with: `uv run pinecone_quickstart.py`
  • It uses `uv` inline dependencies — no separate install needed
  • They can swap in their own `records` list to build something real

---

Path B: Assistant Quickstart

Guide the user through the Pinecone Assistant workflow using the existing assistant skills:

Step 1 – Check for Documents

Before anything else, use AskUserQuestion to ask if the user has files to upload. Pinecone Assistant accepts `.pdf`, `.md`, `.txt`, and `.docx` files — a single file or a folder of files both work.

**If they have files:** ask for the path and proceed to Step 2.

**If they do

Read more
Read it on GitHub ↗

Showing the first part of this file.

Ships withpinecone

A lightweight plugin that integrates Pinecone vector database capabilities directly into Claude Code, enabling semantic search, index management, and RAG (Retrieval Augmented Generation) workflows.

Get the whole plugin, auto-invoked
Stats
68
Stars
0
Views
12
Forks
Active
Maintenance
Python
Language
MIT
License
17d ago
Last commit
7mo ago
Created

Repo: pinecone-io/pinecone-claude-code-plugin

Other skills on pinecone.