Plane MCP Server

Official

get_issue_comments

Retrieve all comments for a specific issue using project_id and issue_id as UUID parameters. Ideal for detailed issue tracking and collaboration in Plane MCP Server.

Instructions

Get all comments for a specific issue. This requests project_id and issue_id as uuid parameters. If you have a readable identifier, you can use the get_issue_using_readable_identifier tool to get the issue_id and project_id

Input Schema

NameRequiredDescriptionDefault
issue_idYesThe uuid identifier of the issue to get
project_idYesThe uuid identifier of the project to get issues for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "issue_id": { "description": "The uuid identifier of the issue to get", "type": "string" }, "project_id": { "description": "The uuid identifier of the project to get issues for", "type": "string" } }, "required": [ "project_id", "issue_id" ], "type": "object" }
ID: y5g9z3v76n