Marketplace context7
Retrieve up-to-date documentation for software libraries, frameworks, and components via the Context7 API. This skill should be used when looking up documentation for any programming library or framework, finding code examples for specific APIs or features, verifying correct usage of library functions, or obtaining current information about library APIs that may have changed since training.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/intellectronica/context7" ~/.claude/skills/aiskillstore-marketplace-context7-e1c404 && rm -rf "$T"
manifest:
skills/intellectronica/context7/SKILL.mdsource content
Context7
Overview
This skill enables retrieval of current documentation for software libraries and components by querying the Context7 API via curl. Use it instead of relying on potentially outdated training data.
Workflow
Step 1: Search for the Library
To find the Context7 library ID, query the search endpoint:
curl -s "https://context7.com/api/v2/libs/search?libraryName=LIBRARY_NAME&query=TOPIC" | jq '.results[0]'
Parameters:
(required): The library name to search for (e.g., "react", "nextjs", "fastapi", "axios")libraryName
(required): A description of the topic for relevance rankingquery
Response fields:
: Library identifier for the context endpoint (e.g.,id
)/websites/react_dev_reference
: Human-readable library nametitle
: Brief description of the librarydescription
: Number of documentation snippets availabletotalSnippets
Step 2: Fetch Documentation
To retrieve documentation, use the library ID from step 1:
curl -s "https://context7.com/api/v2/context?libraryId=LIBRARY_ID&query=TOPIC&type=txt"
Parameters:
(required): The library ID from search resultslibraryId
(required): The specific topic to retrieve documentation forquery
(optional): Response format -type
(default) orjson
(plain text, more readable)txt
Examples
React hooks documentation
# Find React library ID curl -s "https://context7.com/api/v2/libs/search?libraryName=react&query=hooks" | jq '.results[0].id' # Returns: "/websites/react_dev_reference" # Fetch useState documentation curl -s "https://context7.com/api/v2/context?libraryId=/websites/react_dev_reference&query=useState&type=txt"
Next.js routing documentation
# Find Next.js library ID curl -s "https://context7.com/api/v2/libs/search?libraryName=nextjs&query=routing" | jq '.results[0].id' # Fetch app router documentation curl -s "https://context7.com/api/v2/context?libraryId=/vercel/next.js&query=app+router&type=txt"
FastAPI dependency injection
# Find FastAPI library ID curl -s "https://context7.com/api/v2/libs/search?libraryName=fastapi&query=dependencies" | jq '.results[0].id' # Fetch dependency injection documentation curl -s "https://context7.com/api/v2/context?libraryId=/fastapi/fastapi&query=dependency+injection&type=txt"
Tips
- Use
for more readable outputtype=txt - Use
to filter and format JSON responsesjq - Be specific with the
parameter to improve relevance rankingquery - If the first search result is not correct, check additional results in the array
- URL-encode query parameters containing spaces (use
or+
)%20 - No API key is required for basic usage (rate-limited)