MCP Outline Server

by Vortiago
Verified

add_comment

Add comments or replies to documents in Outline using markdown. Facilitates feedback, inquiries, and collaboration by attaching comments to specific content or responding to existing ones.

Instructions

Adds a comment to a document or replies to an existing comment. Use this tool when you need to: - Provide feedback on document content - Ask questions about specific information - Reply to another user's comment - Collaborate with others on document development Args: document_id: The document to comment on text: The comment text (supports markdown) parent_comment_id: Optional ID of a parent comment (for replies) Returns: Result message with the new comment ID

Input Schema

NameRequiredDescriptionDefault
document_idYes
parent_comment_idNo
textYes

Input Schema (JSON Schema)

{ "properties": { "document_id": { "title": "Document Id", "type": "string" }, "parent_comment_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Parent Comment Id" }, "text": { "title": "Text", "type": "string" } }, "required": [ "document_id", "text" ], "title": "add_commentArguments", "type": "object" }
ID: yejga73oe8