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 '{}'

Request#

Empty#

No fields.

Response#

ListMarksResponse#

FieldTypeDescription
markslist of Mark

Every mark, by letter.

Types#

Mark#

Mark is one letter a person types to jump to a row, held by one agent or one workflow.

FieldTypeDescription
markstring

The letter.

agentIdstring

The agent it jumps to, unset when it is on a workflow.

workflowIdstring

The workflow it jumps to, unset when it is on an agent.

idstring

The mark's id.