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.
npx claudepluginhub littlelingo/context-engine --plugin context-engineThis skill uses the workspace's default tool permissions.
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.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Share bugs, ideas, or general feedback.
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"]
}
}
}