add_comment
Enables users to add feedback, ask questions, or reply to comments within a document. Supports markdown for formatting and integrates with the MCP Outline Server for streamlined collaboration.
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
Name | Required | Description | Default |
---|---|---|---|
document_id | Yes | ||
parent_comment_id | No | ||
text | Yes |
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"
}