Skip to content

Pinia

4.81 / 5 composite score · 100% API recall · 49 questions evaluated

Vue Docs MCP provides deep access to the official Pinia documentation, covering the state management library's store definition (defineStore), state, getters, actions, plugins, Options API helpers, SSR, testing, and migration guides.

Activation

Pinia is not enabled by default. Call set_framework_preferences to activate it:

set_framework_preferences(pinia=true)

Tools

Semantic search over Pinia documentation. Uses a 6-step pipeline: embed query, hybrid search (dense + BM25), resolve HyPE hits, expand cross-references, rerank, and reconstruct into readable markdown.

ParameterTypeDefaultDescription
querystringDeveloper question or topic (max 2000 chars)
scopestring"all"Documentation section to search within
max_resultsinteger3Number of sections to return (1-20)

Scope values: all, core-concepts, cookbook, ssr

pinia_api_lookup

Fast exact-match API reference lookup with fuzzy fallback. Returns type signatures, descriptions, and usage examples directly from the documentation.

ParameterTypeDefaultDescription
namestringAPI name to look up (e.g. defineStore, storeToRefs, $patch)

Find related APIs, concepts, and documentation pages for a given API or topic.

ParameterTypeDefaultDescription
namestringAPI name or concept to explore

Resources

URIDescription
pinia://topicsFull table of contents
pinia://topics/{section}TOC for a specific section (e.g. pinia://topics/core-concepts)
pinia://pages/{path}Raw markdown of any doc page (e.g. pinia://pages/core-concepts/state)
pinia://api/indexComplete API entity index grouped by type
pinia://api/entities/{name}Details for a specific API (e.g. pinia://api/entities/defineStore)
pinia://scopesAll valid search scope values

Prompts

PromptParametersDescription
debug_pinia_issuesymptom, code_snippet (optional)Systematic debugging workflow: identifies the concept, searches docs, looks up APIs, and provides a fix
compare_pinia_apisitems (comma-separated)Side-by-side comparison of APIs or patterns (e.g. mapState, mapWritableState or $patch, $reset)
migrate_pinia_patternfrom_pattern, to_patternMigration guide between patterns (e.g. Vuex to Pinia)

Benchmarks vs Context7

Evaluated on 49 Pinia questions scored by an LLM judge (Gemini, temperature 0) across 5 dimensions on a 1-5 scale.

Methodology

Each question has a ground-truth answer with expected API names and documentation paths. Both providers receive the same question and return documentation context. The judge scores the retrieved context on relevance, completeness, correctness, API coverage, and conciseness. See the eval/ directory in the repository for the full evaluation framework.

Overall Scores

MetricVue Docs MCPContext7
Relevance4.924.90
Completeness4.864.65
Correctness4.864.82
API Coverage4.434.20
Conciseness4.984.82
Composite4.814.68

Retrieval and Cost

MetricVue Docs MCPContext7
API Recall100%93.9%
Avg Response Tokens4,361972
Avg Latency0.94s1.74s
Cost per Query (user-facing)Free$0.002

Notes on Fairness

  • Context7 is a general-purpose service covering 9000+ libraries. Vue Docs MCP is purpose-built for the Vue ecosystem.
  • The evaluation framework is open source in the eval/ directory. Run make eval-compare to reproduce.