Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add john-walkoe/pinecone_assistant_mcp --skill pinecone-assistant-paid-plangit clone --depth 1 https://github.com/john-walkoe/pinecone_assistant_mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan)<a href="https://agentmods.dev/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan"><img src="https://agentmods.dev/badge/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan"><img src="https://agentmods.dev/badge/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00128 | $0.03906 |
| Opus 5 | $0.00064 | $0.01953 |
| Sonnet 5 | $0.00026 | $0.00781 |
| Haiku 4.5 | $0.00013 | $0.00391 |
Grade A, and why
pinecone-assistant-paid-plan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 398 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Pinecone Assistant MCP - Paid Plan Skill
assistant_chat is a sub-agent delegation mechanism. Pinecone internally retrieves context from the knowledge base, feeds it to the configured LLM, and returns a synthesized, citation-backed answer. Claude receives only the compact result (~500–2000 tokens) rather than raw document chunks.
evaluate_answer is a quality gate. Given a question, a generated answer, and a ground truth answer, it scores correctness (precision), completeness (recall), and alignment (harmonic mean) — and returns per-fact entailment reasoning.
Primary tools: assistant_chat, evaluate_answer
Primary prompt: delegated_research
Available Tools
| Tool | Cost Tier | Best For |
|---|---|---|
assistant_context |
Context tokens (cheapest) | Raw document retrieval, targeted lookups |
assistant_strategic_multi_search_context |
Context tokens | Multi-angle raw retrieval, comprehensive coverage |
assistant_strategic_multi_search_chat |
Input tokens | AI synthesis across multiple search patterns |
assistant_chat |
Input + output tokens | Delegated synthesis — Pinecone AI handles retrieval + answer |
evaluate_answer |
Input + output tokens | Score answer correctness, completeness, and alignment |
get_configuration_status |
Free | Check current assistant name and model |
update_configuration |
Free | Switch between assistants mid-conversation |
Tool Selection Decision Tree
Choose based on the task:
User wants to find information
├── Need synthesized answer + citations (let Pinecone do the work)
│ └── assistant_chat (context_options={"top_k": 5, "snippet_size": 2048})
│ └── delegated_research prompt for guided workflow
│
├── Need to validate answer quality against known ground truth
│ └── evaluate_answer(question, answer, ground_truth_answer)
│ ├── Scores: correctness (precision), completeness (recall), alignment (F1)
│ └── Use after assistant_chat in agentic/evaluation workflows
│
├── Claude's context window under pressure
│ └── assistant_chat (delegation preserves context window)
│ └── Chain independent calls without history
│
├── Need raw chunks to synthesize yourself / control the output
│ ├── Single topic → assistant_context (top_k=3-5)
│ └── Multi-angle → assistant_strategic_multi_search_context
│
└── Need AI to reason across many search patterns
└── assistant_strategic_multi_search_chat
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 398 lines · 128 tokens per session scan A 71b025e30f7a
pinecone-assistant-paid-plan is a skill published in the GitHub repository john-walkoe/pinecone_assistant_mcp (1 stars, last pushed 6mo ago), licensed MIT. It adds 128 tokens to every session and 3,906 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
llm-wiki
The foundational knowledge distillation pattern for building and maintaining an AI-powered Obsidian wiki. Based on Andrej Karpathy's LLM Wiki architecture. Use this skill whenever the user wants to understand the wiki pattern, set up a new knowledge base, or needs guidance on the three-layer architecture (raw sources…
wegent-knowledge
Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.
karpathy-llm-wiki
Use when building or maintaining a personal LLM-powered knowledge base. Triggers: ingesting sources into a wiki, querying wiki knowledge, linting wiki quality, 'add to wiki', 'what do I know about', or any mention of 'LLM wiki' or 'Karpathy wiki'.
chroma
Open-source embedding database for AI applications. Store embeddings and metadata, perform vector and full-text search, filter by metadata. Simple 4-function API. Scales from notebooks to production clusters. Use for semantic search, RAG applications, or document retrieval. Best for local development and open-source…
qi-cli
Guide for using qi, a local knowledge search CLI for macOS and Linux. Use this skill when the user wants to index documents into a searchable knowledge base, search or retrieve from one, configure qi's collections or embedding providers (Ollama, OpenAI-compatible), choose between its search modes (BM25, hybrid…
retrieval-workflow
Retrieve ranked evidence bundles from the published DocMason knowledge base.