The Plane MCP Server brings the power of Model Context Protocol (MCP) to Plane, allowing AI agents and developer tools to interact programmatically with your Plane workspace.
Whether you're building intelligent assistants, automation scripts, or workflow-driven tools, this server provides a seamless bridge to Planeβs APIβso you can create projects, manage issues, assign tasks, and keep your work in sync with AI-powered tools.
This server unlocks all sorts of useful capabilities for anyone working with Plane:
-
Spin up projects and work items directly from your AI or app interface.
-
Update progress, assign team members, set properties, or add commentsβall programmatically.
-
Move issues through workflows and update their states on the fly.
-
Organize work with labels, modules, and cycles.
-
Analyze data about your teamβs work across projects.
-
Build smart apps that interact naturally with Planeβwhether itβs an AI agent logging work, or a bot keeping projects tidy.
get_user- Get the current user's information
- No parameters required
-
get_projects- Get all projects for the current user
- No parameters required
-
create_project- Create a new project
- Parameters:
name(string, required): Project name
-
list_issue_types- Get all issue types for a specific project
- Parameters:
project_id(string, required): UUID of the project
-
get_issue_type- Get details of a specific issue type
- Parameters:
project_id(string, required): UUID of the projecttype_id(string, required): UUID of the issue type
-
create_issue_type- Create a new issue type in a project
- Parameters:
project_id(string, required): UUID of the projectissue_type_data: Object containing:name(string, required): Name of the issue typedescription(string, required): Description of the issue type
-
update_issue_type- Update an existing issue type
- Parameters:
project_id(string, required): UUID of the projecttype_id(string, required): UUID of the issue typeissue_type_data(object): Fields to update on the issue type
-
delete_issue_type- Delete an issue type
- Parameters:
project_id(string, required): UUID of the projecttype_id(string, required): UUID of the issue type
-
list_states- Get all states for a specific project
- Parameters:
project_id(string, required): UUID of the project
-
get_state- Get details of a specific state
- Parameters:
project_id(string, required): UUID of the projectstate_id(string, required): UUID of the state
-
create_state- Create a new state in a project
- Parameters:
project_id(string, required): UUID of the projectstate_data: Object containing:name(string, required): Name of the statecolor(string, required): Color code for the state
-
update_state- Update an existing state
- Parameters:
project_id(string, required): UUID of the projectstate_id(string, required): UUID of the statestate_data(object): Fields to update on the state
-
delete_state- Delete a state
- Parameters:
project_id(string, required): UUID of the projectstate_id(string, required): UUID of the state
-
list_labels- Get all labels for a specific project
- Parameters:
project_id(string, required): UUID of the project
-
get_label- Get details of a specific label
- Parameters:
project_id(string, required): UUID of the projectlabel_id(string, required): UUID of the label
-
create_label- Create a new label in a project
- Parameters:
project_id(string, required): UUID of the projectlabel_data: Object containing:name(string, required): Name of the labelcolor(string, required): Color code for the label
-
update_label- Update an existing label
- Parameters:
project_id(string, required): UUID of the projectlabel_id(string, required): UUID of the labellabel_data(object): Fields to update on the label
-
delete_label- Delete a label
- Parameters:
project_id(string, required): UUID of the projectlabel_id(string, required): UUID of the label
-
get_issue_using_readable_identifier- Get issue details using readable identifier (e.g., PROJ-123)
- Parameters:
project_identifier(string, required)issue_identifier(string, required): Issue numbe: Project identifier (e.g., "PROJ") r (e.g., "123")
-
get_issue_comments- Get all comments for a specific issue
- Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the issue
-
add_issue_comment- Add a comment to an issue
- Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the issuecomment_html(string, required): HTML content of the comment
-
create_issue- Create a new issue
- Parameters:
project_id(string, required): UUID of the projectissue_data: Object containing:name(string, required): Title of the issuedescription_html(string, required): HTML description of the issue
-
update_issue- Update an existing issue
- Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the issueissue_data(object): Fields to update on the issue
-
list_modules- Get all modules for a specific project
- Parameters:
project_id(string, required): UUID of the project
-
get_module- Get details of a specific module
- Parameters:
project_id(string, required): UUID of the projectmodule_id(string, required): UUID of the module
-
create_module- Create a new module in a project
- Parameters:
project_id(string, required): UUID of the projectmodule_data: Object containing:name(string, required): Name of the module
-
update_module- Update an existing module
- Parameters:
project_id(string, required): UUID of the projectmodule_id(string, required): UUID of the modulemodule_data(object): Fields to update on the module
-
delete_module- Delete a module
- Parameters:
project_id(string, required): UUID of the projectmodule_id(string, required): UUID of the module
-
list_module_issues- Get all issues for a specific module
- Parameters:
project_id(string, required): UUID of the projectmodule_id(string, required): UUID of the module
-
add_module_issues- Add issues to a module
- Parameters:
project_id(string, required): UUID of the projectmodule_id(string, required): UUID of the moduleissues(string[], required): Array of issue UUIDs to add
-
delete_module_issue- Remove an issue from a module
- Parameters:
project_id(string, required): UUID of the projectmodule_id(string, required): UUID of the moduleissue_id(string, required): UUID of the issue to remove
-
list_cycles- Get all cycles for a specific project
- Parameters:
project_id(string, required): UUID of the project
-
get_cycle- Get details of a specific cycle
- Parameters:
project_id(string, required): UUID of the projectcycle_id(string, required): UUID of the cycle
-
create_cycle- Create a new cycle in a project
- Parameters:
project_id(string, required): UUID of the projectcycle_data: Object containing:name(string, required): Name of the cyclestart_date(string, required): Start date (YYYY-MM-DD)end_date(string, required) : End date (YYYY-MM-DD)
-
update_cycle- Update an existing cycle
- Parameters:
project_id(string, required): UUID of the projectcycle_id(string, required): UUID of the cyclecycle_data(object): Fields to update on the cycle
-
delete_cycle- Delete a cycle
- Parameters:
project_id(string, required): UUID of the projectcycle_id(string, required): UUID of the cycle
-
list_cycle_issues- Get all issues for a specific cycle
- Parameters:
project_id(string, required): UUID of the projectcycle_id(string, required): UUID of the cycle
-
add_cycle_issues- Add issues to a cycle
- Parameters:
project_id(string, required): UUID of the projectcycle_id(string, required): UUID of the cycleissues(string[], required): Array of issue UUIDs to add
-
delete_cycle_issue- Remove an issue from a cycle
- Parameters:
project_id(string, required): UUID of the projectcycle_id(string, required): UUID of the cycleissue_id(string, required): UUID of the issue to remove
-
get_issue_worklogs- Get all worklogs for a specific issue
- Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the issue
-
get_total_worklogs- Get total logged time for a project
- Parameters:
project_id(string, required): UUID of the project
-
create_worklog- Create a new worklog for an issue
- Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the issueworklog_data: Object containing:description(string, required): Description of the work doneduration(integer, required): Duration in minutes
-
update_worklog- Update an existing worklog
- Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the issueworklog_id(string, required): UUID of the worklogworklog_data(object): Fields to update on the worklog
-
delete_worklog- Delete a worklog
- Parameters:
project_id(string, required): UUID of the projectissue_id(string, required): UUID of the issueworklog_id(string, required): UUID of the worklog
Note: Pages API tools require session authentication. Use plane_login first with your email and password.
-
plane_login- Authenticate with Plane using email and password
- Parameters:
email(string, required): Your Plane account emailpassword(string, required): Your Plane account passwordapi_host_url(string, optional): Plane API URL (defaults to https://api.plane.so/)
-
list_pages- List all pages in a project
- Parameters:
project_id(string, required): UUID of the project
-
get_page- Get details of a specific page
- Parameters:
project_id(string, required): UUID of the projectpage_id(string, required): UUID of the page
-
create_page- Create a new page
- Parameters:
project_id(string, required): UUID of the projectname(string, required): Page namedescription(string, optional): Page descriptionaccess(integer, optional): Access level (0=public, 1=private)
-
update_page- Update a page's properties
- Parameters:
project_id(string, required): UUID of the projectpage_id(string, required): UUID of the pagename(string, optional): New page namedescription(string, optional): New descriptionaccess(integer, optional): New access level
-
delete_page- Delete a page permanently
- Parameters:
project_id(string, required): UUID of the projectpage_id(string, required): UUID of the page
-
lock_page/unlock_page- Lock or unlock a page for editing
- Parameters:
project_id(string, required): UUID of the projectpage_id(string, required): UUID of the page
-
favorite_page/unfavorite_page- Add or remove page from favorites
- Parameters:
project_id(string, required): UUID of the projectpage_id(string, required): UUID of the page
-
archive_page/unarchive_page- Archive or restore a page
- Parameters:
project_id(string, required): UUID of the projectpage_id(string, required): UUID of the page
-
duplicate_page- Create a copy of a page
- Parameters:
project_id(string, required): UUID of the projectpage_id(string, required): UUID of the page to duplicate
-
get_page_description/update_page_description- Get or update page HTML content
- Parameters:
project_id(string, required): UUID of the projectpage_id(string, required): UUID of the pagedescription_html(string, required for update): HTML content
-
get_page_versions/get_page_version- Get page version history
- Parameters:
project_id(string, required): UUID of the projectpage_id(string, required): UUID of the pageversion_id(string, required for specific version): UUID of the version
-
get_pages_summary- Get pages statistics for a project
- Parameters:
project_id(string, required): UUID of the project
PLANE_API_KEY- Your Plane API token. You can generate one from the Workspace Settings > API Tokens page (/settings/api-tokens/) in the Plane app.PLANE_WORKSPACE_SLUG- The workspace slug for your Plane instance. The workspace-slug represents the unique workspace identifier for a workspace in Plane. It can be found in the URL.PLANE_API_HOST_URL(optional) - The host URL of the Plane API Server. Defaults to https://api.plane.so/
Pages API tools require session authentication using email/password instead of API key. Use the plane_login tool before accessing Pages tools.
Environment variables for Pages authentication:
PLANE_EMAIL(optional) - Your Plane account email for session authenticationPLANE_PASSWORD(optional) - Your Plane account password for session authentication
Note: You can either:
- Set these environment variables in your MCP client configuration, OR
- Call
plane_logintool manually with email/password when needed
Authentication methods by feature:
- Projects, Issues, Modules, Cycles, Labels, States, Work Logs: API Key (PLANE_API_KEY)
- Pages: Session Auth (email/password via
plane_logintool)
You can add Plane to Claude Desktop by updating your claude_desktop_config.json:
For standard API key authentication (Projects, Issues, etc.):
{
"mcpServers": {
"plane": {
"command": "npx",
"args": [
"-y",
"@makeplane/plane-mcp-server"
],
"env": {
"PLANE_API_KEY": "<YOUR_API_KEY>",
"PLANE_API_HOST_URL": "<HOST_URL_FOR_SELF_HOSTED>",
"PLANE_WORKSPACE_SLUG": "<YOUR_WORKSPACE_SLUG>"
}
}
}
}To also use Pages API (with session authentication):
{
"mcpServers": {
"plane": {
"command": "npx",
"args": [
"-y",
"@makeplane/plane-mcp-server"
],
"env": {
"PLANE_API_KEY": "<YOUR_API_KEY>",
"PLANE_API_HOST_URL": "<HOST_URL_FOR_SELF_HOSTED>",
"PLANE_WORKSPACE_SLUG": "<YOUR_WORKSPACE_SLUG>",
"PLANE_EMAIL": "<YOUR_EMAIL>",
"PLANE_PASSWORD": "<YOUR_PASSWORD>"
}
}
}
}Note: If you don't set PLANE_EMAIL and PLANE_PASSWORD, you can still use Pages tools by calling plane_login manually in your conversation.
You can also connect Plane to VSCode by editing your .vscode.json or mcp.json file:
For standard API key authentication:
{
"servers": {
"plane": {
"command": "npx",
"args": [
"-y",
"@makeplane/plane-mcp-server"
],
"env": {
"PLANE_API_KEY": "<YOUR_API_KEY>",
"PLANE_API_HOST_URL": "<HOST_URL_FOR_SELF_HOSTED>",
"PLANE_WORKSPACE_SLUG": "<YOUR_WORKSPACE_SLUG>"
}
}
}
}To also use Pages API (with session authentication):
{
"servers": {
"plane": {
"command": "npx",
"args": [
"-y",
"@makeplane/plane-mcp-server"
],
"env": {
"PLANE_API_KEY": "<YOUR_API_KEY>",
"PLANE_API_HOST_URL": "<HOST_URL_FOR_SELF_HOSTED>",
"PLANE_WORKSPACE_SLUG": "<YOUR_WORKSPACE_SLUG>",
"PLANE_EMAIL": "<YOUR_EMAIL>",
"PLANE_PASSWORD": "<YOUR_PASSWORD>"
}
}
}
}This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.