Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
manojbajaj95 avatar

Context7

  • 13 installs
  • 7 repo stars
  • Updated June 23, 2026
  • manojbajaj95/mcp-skill

Helps with ai & agent building tasks.

About

context7 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • context7
  • AI & Agent Building
  • AI-coding skill

Context7 by the numbers

  • 13 all-time installs (skills.sh)
  • Ranked #11,398 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/manojbajaj95/mcp-skill --skill context7

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs13
repo stars7
Last updatedJune 23, 2026
Repositorymanojbajaj95/mcp-skill

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

context7

Use this skill when you need to work with context7 through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.

Authentication

No authentication required.

app = Context7App()

Passing an auth argument is accepted but has no effect and will emit a warning.

Dependencies

This skill requires the following Python packages:

  • mcp-skill

Install with uv:

uv pip install mcp-skill

Or with pip:

pip install mcp-skill

Python Usage

Use the generated app directly in async Python code:

import asyncio
from context7.app import Context7App


async def main():
    app = Context7App()
    result = await app.resolve_library_id(query="example", libraryName="example")
    print(result)


asyncio.run(main())

Async Usage Notes

  • Every generated tool method is async, so call it with await.
  • Use these apps inside an async function, then run that function with asyncio.run(...) if you are in a script.
  • If you forget await, you will get a coroutine object instead of the actual tool result.
  • Be careful when mixing this with other event-loop environments such as notebooks, web servers, or async frameworks.

Discover Functions with the CLI

Use the CLI to find available apps, list functions on an app, and inspect a function before calling it:

uvx mcp-skill list-apps
uvx mcp-skill list-functions context7
uvx mcp-skill inspect context7 resolve_library_id

Important: Add .agents/skills to your Python path so imports resolve correctly:

import sys
sys.path.insert(0, ".agents/skills")
from context7.app import Context7App

Or set the PYTHONPATH environment variable:

export PYTHONPATH=".agents/skills:$PYTHONPATH"

Preferred: use `uv run` (handles dependencies automatically):

PYTHONPATH=.agents/skills uv run --with mcp-skill python -c "
import asyncio
from context7.app import Context7App

async def main():
    app = Context7App()
    result = await app.resolve_library_id(query="example", libraryName="example")
    print(result)

asyncio.run(main())
"

Alternative: use `python` directly (install dependencies first):

pip install mcp-skill
PYTHONPATH=.agents/skills python -c "
import asyncio
from context7.app import Context7App

async def main():
    app = Context7App()
    result = await app.resolve_library_id(query="example", libraryName="example")
    print(result)

asyncio.run(main())
"

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.