documentation-lookup

Fetches current library and framework documentation via Context7 MCP tools.

Updated Mar 18, 2026
One-click install
npx skills add https://github.com/freedom909/real-estate-saas --skill documentation-lookup-freedom909
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: documentation-lookup
Source: https://github.com/freedom909/real-estate-saas/tree/main/.trae/skills/documentation-lookup
Command: npx skills add https://github.com/freedom909/real-estate-saas --skill documentation-lookup-freedom909

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI training data becomes outdated, so answers about libraries, frameworks, and APIs can be wrong or stale. This Skill retrieves live documentation through the Context7 MCP server so answers reflect current API behavior, setup steps, and code examples. ## Core Features & Use Cases - Library Resolution: Converts a library name like Next.js, Prisma, or Supabase into a Context7-compatible library ID using the resolve-library-id tool. - Live Documentation Queries: Fetches up-to-date docs and code snippets with the query-docs tool, with version-aware selection when users mention specific releases. - Use Case: A developer asks "How do I configure Next.js middleware?" The Skill resolves the /vercel/next.js library ID, queries the current docs, and answers with a working middleware.ts example from the fetched documentation. ## Quick Start Ask a question about a specific library or framework, such as how to set up authentication in Supabase, and the Skill will fetch the current documentation to answer.

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 documentation for a library like Next.js or Prisma?▼

Ask your question naming the library, and the Skill calls the Context7 resolve-library-id tool to find the matching library ID, then query-docs to fetch current documentation and code snippets. The answer is built from the fetched docs rather than training data.

What is the Context7 MCP and how does documentation lookup work?▼

Context7 is an MCP server exposing live documentation through two tools: resolve-library-id, which maps a library name to an ID like /vercel/next.js, and query-docs, which fetches docs for that ID. You must resolve the ID before querying docs.

Does documentation lookup support specific framework versions like React 19?▼

Yes. When the user mentions a version, the Skill prefers version-specific library IDs from the resolution results, such as /org/project/v1.2.0, so the fetched documentation matches the requested release.

Which AI coding tools work with Context7 documentation lookup?▼

Any harness with the Context7 MCP server configured can use it, including Claude Code, Cursor, and Codex. The Skill relies only on the resolve-library-id and query-docs MCP tools being available.

What are the limitations of Context7 documentation queries?▼

The Skill limits itself to three MCP calls per question; if the answer remains unclear, it states the uncertainty instead of guessing. It also depends on Context7 having indexed documentation for the requested library.

Is it safe to send my question to Context7 if it contains API keys?▼

The Skill instructs redacting API keys, passwords, tokens, and other secrets from any query before passing it to resolve-library-id or query-docs. Treat your question as potentially containing secrets before it is sent.