From context-engine
Library documentation lookup via Context7 MCP. Use when you need current docs for any library, framework, or API. Prevents hallucinated APIs by fetching real documentation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/context-engine:context7-docsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When you need documentation for a library, framework, or API - fetch it instead of relying on training data. This prevents hallucinated function signatures and outdated API patterns.
When you need documentation for a library, framework, or API - fetch it instead of relying on training data. This prevents hallucinated function signatures and outdated API patterns.
mcp__context7__resolve-library-id with the library namemcp__context7__get-library-docs with the resolved ID# Step 1: Resolve
mcp__context7__resolve-library-id("fastapi")
# Step 2: Fetch relevant docs
mcp__context7__get-library-docs(library_id="...", topic="dependency injection")
# Step 3: Write code using real API signatures
topic parameter in query-docs — prefer specific queries (e.g., "dependency injection") over broad library-wide fetchesAdd to .mcp.json or settings.json if not already configured:
{
"mcpServers": {
"context7": {
"command": "npx",
"args": ["-y", "@context7/mcp@latest"]
}
}
}
npx claudepluginhub littlelingo/context-engine --plugin context-engineFetches up-to-date library and framework documentation via Context7 MCP for setup questions, API references, and code examples.
Fetches up-to-date library/framework docs via Context7 MCP (resolve-library-id, query-docs) for setup questions, API references, code examples.
Finds official docs, changelogs, and migration guides for APIs, libraries, and error messages using Context7 MCP, llms.txt, and web search. Useful for debugging errors, verifying API usage, and reviews.