list_marks
List every mark, by letter, with the agent or the workflow each one jumps to.
Agentread-onlyidempotentMCP tool
A mark is the shorthand a person types in the panel to reach a row, and a letter belongs to one row at a time.
Calling it#
curl -X POST http://127.0.0.1:8787/agent.v1.AgentService/ListMarks \
-H 'Content-Type: application/json' \
-d '{}'komrad rpc list-marks{
"name": "list_marks",
"arguments": {}
}Offered by the komrad MCP server to implementer, reviewer, orchestrator agents.
Request#
Empty#
No fields.
Response#
ListMarksResponse#
Types#
Mark#
Mark is one letter a person types to jump to a row, held by one agent or one workflow.
| Field | Type | Description |
|---|---|---|
mark | string | The letter. |
agentId | string | The agent it jumps to, unset when it is on a workflow. |
workflowId | string | The workflow it jumps to, unset when it is on an agent. |
id | string | The mark's id. |