Claude Code
Connect Claude Code CLI to Parallel
Setup
Using CLI
claude mcp add parallel --transport http https://mcp.parallel.so/api/mcpClaude Code will handle OAuth authorization automatically when you first use the MCP tools.
Manual Configuration
Add to your .mcp.json:
{
"mcpServers": {
"parallel": {
"type": "http",
"url": "https://mcp.parallel.so/api/mcp"
}
}
}Using API Key (Alternative)
- Create an API key in Parallel → Settings → API Keys
- Set the environment variable:
export PARALLEL_API_KEY="ak_your_key_here"- Add with headers:
claude mcp add parallel --transport http https://mcp.parallel.so/api/mcp -H "Authorization: Bearer ${PARALLEL_API_KEY}"Usage
Once connected, Claude Code can manage your tasks as part of your development workflow:
- "Check my Parallel tasks and update ENG-42 to in_progress"
- "Create a subtask under ENG-42 for writing tests"
- "Link this commit to ENG-42"
- "Add a comment on ENG-42 with the deployment status"