A Model Context Protocol server that enables LLMs to interact with Plane.so project management platform, allowing AI assistants to manage projects and issues through Plane's API. Built by Kelvin Kwong, this implementation provides tools for listing projects, creating and updating issues, filtering by priority, and managing assignees - all while maintaining user control through explicit approval for data modifications. The server uses a stdio transport for communication and includes robust error handling for API interactions, making it particularly valuable for teams looking to integrate AI assistants into their project management workflows.
No reviews yet. Be the first to review!
Sign in to join the conversation
Lists all projects in your Plane workspace. Parameters: None
Gets detailed information about a specific project. Parameters: project_id (ID of the project to retrieve)
Creates a new issue in a specified project. Parameters: project_id (ID of the project), name (Title of the issue), description_html (HTML description of the issue, required), priority (optional), state_id (optional), assignees (optional, array of user IDs)
Lists issues from a specified project with optional filtering. Parameters: project_id (ID of the project), state_id (optional), priority (optional), assignee_id (optional), limit (optional, default: 50)
Gets detailed information about a specific issue. Parameters: project_id (ID of the project), issue_id (ID of the issue to retrieve)
Updates an existing issue in a project. Parameters: project_id (ID of the project), issue_id (ID of the issue to update), name (optional), description_html (optional), priority (optional), state_id (optional), assignees (optional)