No MCP client required

Library docs in
your terminal

Up-to-date API references and code examples from Context7 — pipe into agents, scripts, or just look stuff up.

$ npm install -g @vedanth/context7
$ c7 react "server components"
→ /websites/react_dev

### Server Components
Source: https://react.dev/reference/rsc/server-components

Server Components are a new type of Component that
renders ahead of time, before bundling...

```jsx
export default async function Page() {
const data = await db.query('SELECT ...');
return <Dashboard data={data} />
}
```

Zero config

No MCP server setup. No editor plugins. Just install and run.

🔗

Pipe-friendly

Feed docs into LLMs, scripts, clipboards. Composable with any workflow.

📚

Always current

Same indexed docs that power Cursor and Claude. Updated from source repos.

🤖

Agent-ready

Inject accurate docs into agent prompts. Stop hallucinated APIs.

Use it everywhere

# Quick lookup
c7 prisma "findMany"
c7 tailwindcss "dark mode"
c7 express middleware --tokens 10000

# Pipe into your AI coding agent
DOCS=$(c7 nextjs "app router" --tokens 8000)
claude "Build middleware using these docs:\n$DOCS"

# Copy to clipboard
c7 react hooks | pbcopy

Get started in 10 seconds