---
title: Quick Start
description: Get Docfork running in your favorite editor in under 60 seconds.
---
import { Tab, Tabs } from "fumadocs-ui/components/tabs";
import { Step, Steps } from "fumadocs-ui/components/steps";
import { Callout } from "fumadocs-ui/components/callout";
import { Card } from "fumadocs-ui/components/card";
<Callout title="Get your API Key" type="info">
To ensure the highest rate limits (1,000 reqs/mo) and access to Cabinets Cabinets, [get a free API
Key](https://app.docfork.com) before installing.
</Callout>
## Choose your Client
Get set up in under 60 seconds with Cursor, Claude Code, or Opencode (and others).
<Tabs items={['Cursor', 'Claude Code', 'Opencode']}>
<Tab value="Cursor">
One-click install:
[](https://cursor.com/en/install-mcp?name=docfork&config=eyJ1cmwiOiJodHRwczovL21jcC5kb2Nmb3JrLmNvbS9tY3AifQ%3D%3D)
Or add manually to `~/.cursor/mcp.json`:
```json
{
"mcpServers": {
"docfork": {
"url": "https://mcp.docfork.com/mcp",
"headers": {
"DOCFORK_API_KEY": "YOUR_API_KEY"
}
}
}
}
```
</Tab>
<Tab value="Claude Code">
```bash claude mcp add --transport http docfork https://mcp.docfork.com/mcp --header
"DOCFORK_API_KEY: YOUR_API_KEY" ```
</Tab>
<Tab value="Opencode">
Add this to your Opencode configuration file:
```json
{
"mcp": {
"docfork": {
"type": "remote",
"url": "https://mcp.docfork.com/mcp",
"headers": {
"DOCFORK_API_KEY": "YOUR_API_KEY"
},
"enabled": true
}
}
}
```
</Tab>
</Tabs>
## Verify Installation
Once installed, open a chat with your AI assistant and type:
```
Check if Docfork is working by searching for the latest Next.js documentation.
```
If the AI responds with current information about Next.js (and you see a "Used docfork" indicator), you are ready to build.
<Card
title="Using a different client?"
description="View configurations for Zed, BoltAI, Docker, and more"
href="/clients/overview"
/>