Parallel Docs

Getting Started

Connect your AI tools to Parallel

Overview

Parallel exposes an MCP (Model Context Protocol) server that AI clients can connect to. This allows AI agents to:

  • View, create, and manage tasks
  • Track goals and progress
  • Add comments and attachments
  • Link git commits to tasks

Authentication

There are two ways to authenticate:

Most MCP clients (Cursor, Claude Code, Claude Desktop) support OAuth automatically. When you first connect, your browser will open to authorize the connection.

API Key

For clients that don't support OAuth, or if you prefer a simpler setup:

  1. Go to Settings → API Keys in the Parallel web app
  2. Click Create API Key
  3. Copy the key (it's only shown once)
  4. Use it as a Bearer token in your MCP client configuration

MCP Server URL

https://mcp.parallel.so/api/mcp

Available Tools

ToolDescriptionScope
list_tasksList active tasks with filterstasks:read
get_taskGet task details (subtasks, comments)tasks:read
create_taskCreate a new tasktasks:write
update_taskUpdate task fieldstasks:write
set_statusChange task statustasks:write
delete_taskDelete a tasktasks:write
search_tasksSearch by keywordtasks:read
get_today_tasksTasks due today/overduetasks:read
get_review_tasksTasks in reviewtasks:read
list_goalsList goalsgoals:read
get_goalGoal with progress statsgoals:read
create_goalCreate a goalgoals:write
update_goalUpdate a goalgoals:write
list_commentsList task commentscomments:read
add_commentAdd a commentcomments:write
list_attachmentsList task attachmentsattachments:read
read_attachmentRead text attachmentattachments:read
create_attachmentCreate text attachmentattachments:write
link_commitsLink git commitstasks:write
add_relationAdd task relationtasks:write
remove_relationRemove task relationtasks:write

On this page