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.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
Lists all projects in your Plane workspace. Parameters: None
Gets detailed information about a specific project. Parameters: project_id (string) - ID of the project to retrieve
Creates a new issue in a specified project. Parameters: project_id (string), name (string), description_html (string) - required, priority (optional string), state_id (optional string), assignees (optional array of strings)
Lists issues from a specified project with optional filtering. Parameters: project_id (string), state_id (optional string), priority (optional string), assignee_id (optional string), limit (optional integer)
Gets detailed information about a specific issue. Parameters: project_id (string), issue_id (string) - ID of the issue to retrieve
Updates an existing issue in a project. Parameters: project_id (string), issue_id (string), name (optional string), description_html (optional string), priority (optional string), state_id (optional string), assignees (optional array of strings)