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.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
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), priority (optional; priority of the issue), state_id (optional; ID of the state for this issue), assignees (optional; array of user IDs to assign to this issue)
Lists issues from a specified project with optional filtering. Parameters: project_id (ID of the project), state_id (optional; filter by state ID), priority (optional; filter by priority), assignee_id (optional; filter by assignee ID), limit (optional; maximum number of issues to return)
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), name (optional; updated title of the issue), description_html (optional; updated HTML description), priority (optional; updated priority), state_id (optional; updated state ID), assignees (optional; updated array of user IDs)