documentation-lookup

Fetches current library and framework documentation via the Context7 MCP server.

Updated May 7, 2026
One-click install
npx skills add https://github.com/mirzadham/trainingroombookingsystem2 --skill documentation-lookup-mirzadham
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: documentation-lookup
Source: https://github.com/mirzadham/trainingroombookingsystem2/tree/main/.agent/.agents/skills/documentation-lookup
Command: npx skills add https://github.com/mirzadham/trainingroombookingsystem2 --skill documentation-lookup-mirzadham

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI training data becomes outdated, so answers about library APIs, configuration, and code examples can be wrong or stale. This Skill retrieves live, version-aware documentation through the Context7 MCP server instead of relying on memorized knowledge. ## Core Features & Use Cases - Library Resolution: Converts a library name (e.g. Next.js, Prisma, Supabase) into a Context7-compatible library ID using the resolve-library-id tool, preferring exact matches, high benchmark scores, and version-specific IDs. - Documentation Querying: Fetches relevant documentation and code snippets via the query-docs tool, limited to 3 calls per question to control cost and latency. - Use Case: A developer asks "How do I configure Next.js 15 middleware?" The Skill resolves the /vercel/next.js library ID, queries the current docs, and answers with an up-to-date middleware.ts example rather than outdated training-data patterns. ## Quick Start Ask a question about any library or framework, such as "How do I set up authentication with Supabase?", and the Skill will fetch and apply the current documentation.

Frequently Asked Questions about documentation-lookup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get up-to-date library documentation in an AI assistant?▼

Use the Context7 MCP server, which exposes resolve-library-id and query-docs tools. First resolve the library name to a Context7 ID like /vercel/next.js, then query the docs with your specific question to receive current snippets and references.

How does Context7 resolve-library-id work?▼

resolve-library-id takes a library name and the user's query, then returns candidate Context7 library IDs in /org/project format. Select the best match by name similarity, benchmark score, source reputation, and version specificity before calling query-docs.

Which libraries and frameworks does Context7 support?▼

Context7 covers popular libraries and frameworks including React, Next.js, Vue, Svelte, Express, Tailwind, Prisma, and Supabase. Version-specific IDs such as /org/project/v1.2.0 are available for some libraries when the user names a version.

Is it safe to send my question to the Context7 MCP server?▼

Yes, but redact API keys, passwords, tokens, and other secrets from any query before sending it to resolve-library-id or query-docs. Treat user questions as potentially containing sensitive data before passing them to external tools.

What happens if Context7 documentation lookup fails or is unclear?▼

The Skill limits lookups to 3 calls per question. If the answer remains unclear after those calls, it states the uncertainty and answers with the best available information rather than guessing or fabricating API details.