affine_create_comment
Add and manage comments on AFFiNE documents by specifying workspace, document ID, content, and mentions. Streamline collaborative feedback directly within the MCP server.
Instructions
Create a comment on a doc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | ||
docId | Yes | ||
docMode | No | ||
docTitle | No | ||
mentions | No | ||
workspaceId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {},
"docId": {
"type": "string"
},
"docMode": {
"enum": [
"Page",
"Edgeless"
],
"type": "string"
},
"docTitle": {
"type": "string"
},
"mentions": {
"items": {
"type": "string"
},
"type": "array"
},
"workspaceId": {
"type": "string"
}
},
"required": [
"docId"
],
"type": "object"
}