Documentation Index
Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt
Use this file to discover all available pages before exploring further.
The MCP server exposes 36 tools — a thin layer over the REST API. Each tool maps directly to one REST endpoint; the descriptions below double as prompt-engineering surface (it’s what the LLM in your client reads when deciding to call a tool).
Agents
| Tool | What it does | REST equivalent |
|---|
list_agents | List all agents in the user’s organization. | List agents |
get_agent | Get full detail on one agent. | Get an agent |
search_agents | Search agents by name. | Search agents |
Runs
| Tool | What it does | REST equivalent |
|---|
start_agent | Start a run of an agent. | Start a run |
get_agent_runs | List runs for an agent. | List runs for an agent |
get_run_status | Status of a single run. | Get run status |
stop_agent | Stop a run gracefully. | Stop a run |
kill_agent | Force-kill a run. | Kill a run |
delete_run | Delete a run from history. | Delete a run |
Files
| Tool | What it does | REST equivalent |
|---|
get_run_files | List output files for a run. | List run output files |
get_file_download_url | Signed URL to download one file. | Download a run file |
Versions
| Tool | What it does | REST equivalent |
|---|
get_agent_versions | List all versions of an agent. | List versions |
restore_agent_version | Roll back to a previous version. | Restore version |
Schedules
| Tool | What it does | REST equivalent |
|---|
list_agent_schedules | List schedules for an agent. | List schedules |
get_agent_schedule | Read one schedule. | Get schedule |
create_agent_schedule | Create a CRON / RunEvery / RunOnce schedule. | Create schedule |
update_agent_schedule | Modify a schedule. | Update schedule |
enable_agent_schedule | Resume a paused schedule. | Enable schedule |
disable_agent_schedule | Pause without deleting. | Disable schedule |
delete_agent_schedule | Delete a schedule. | Delete schedule |
get_scheduled_runs | Upcoming run instances from active schedules. | Upcoming schedules |
Spaces
| Tool | What it does | REST equivalent |
|---|
list_spaces | All spaces visible to the user. | List spaces |
get_space | Read one space. | Get a space |
get_space_agents | Agents inside a space. | List space agents |
search_space_by_name | Find a space by name. | Search spaces |
run_space_agents | Run every agent in a space. | Run all |
Billing
| Tool | What it does | REST equivalent |
|---|
get_credits_balance | Current credit balance. | Credits balance |
get_spending_summary | Aggregate spend over a window. | Spending |
get_credit_history | Transaction-level credit ledger. | Credit history |
get_agents_usage | Per-agent usage roll-up. | Agents usage |
get_agent_cost_breakdown | Per-agent cost detail. | Agent cost |
get_agent_runs_cost | Cost per run for one agent. | Agent runs cost |
Analytics
| Tool | What it does | REST equivalent |
|---|
get_runs_summary | Aggregate run counts by status. | Runs summary |
get_records_summary | Aggregate records extracted. | Records summary |
get_run_diagnostics | Failure diagnostics for one run. | Run diagnostics |
get_latest_failure | Most recent failed run for an agent. | Latest failure |
Coming to MCP
Agent Builder authoring tools are rolling into the MCP server. The naming below approximates the existing convention (snake_case from REST verb + resource); engineering will finalize.
| Anticipated tool | REST equivalent |
|---|
start_agent_builder_session | Start a session |
get_agent_builder_session_status | Session status |
get_agent_builder_session_events | Session events |
get_agent_builder_session_conversation | Session conversation |
send_agent_builder_session_followup | Send follow-up |
finish_agent_builder_session | Finish session |
cancel_agent_builder_session | Cancel session |
stop_agent_builder_session | Stop session |
When these ship, this page is updated and the “Coming to MCP” section folds into the relevant categories above.