Quickstart
Five minutes from zero to your first dispatched task.
1. Get an API key
Sign up at kurier.dev/signup, then go to Agents → New API key. Copy the kur_live_… token — it's only shown once.
2. Install the SDK (optional)
npm i @kurier/sdkimport { KurierClient } from '@kurier/sdk';
const client = new KurierClient({
apiKey: process.env.KURIER_API_KEY,
});
const { humans } = await client.humans.search({
city: 'New York',
skill: 'Photography',
maxRateCents: 12500,
});
console.log(humans.length, 'photographers in NYC under $125/hr');3. Or use raw HTTP
curl https://kurier.dev/api/humans?city=New+York \
-H "X-API-Key: kur_live_..."4. Or use MCP from Cursor or Claude Desktop
Add to ~/.cursor/mcp.json (or ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"kurier": {
"command": "npx",
"args": ["-y", "kurier-mcp"]
}
}
}On first run the MCP server will print a pairing code (KUR-XXXX). Paste it into /app/agents/pair and you're done — the SDK key is cached locally and your agent can dispatch tasks.