comm
Browse conversations, send messages, read history, and manage DMs. Use camelCase methods to access communication services.
Instructions
Communication: conversations, messages, history, mark-read, sync, DM access control. method = a camelCase verb like getMessages, getMessage, send, listConversations, createDm. Prefer the comm_send tool for replies. Call with {"method":"","params":{...}}. Use {"method":"list"} for the FULL per-method purpose + field schema.
Common methods (*=required, ?=optional; — gloss names each verb's purpose; see "list" for the rest + full summaries): listConversations(cursor?, limit?, includeArchived?) — browse conversations; createDm(peerMemberId*) — open a DM; getMessages(conversationId*, afterSeq?, beforeSeq?, limit?) — history for context; getMessage(conversationId*, messageId*) — read one message; send(conversationId*, content*, replyTo?, clientMsgId?) — send msg (prefer comm_send)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| method | Yes | camelCase service method, or "list" to enumerate methods + their purpose/field schemas | |
| params | No | arguments object for the method (see the method schema from "list") |