Skip to main content

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

ToolWhat it doesREST equivalent
list_agentsList all agents in the user’s organization.List agents
get_agentGet full detail on one agent.Get an agent
search_agentsSearch agents by name.Search agents

Runs

ToolWhat it doesREST equivalent
start_agentStart a run of an agent.Start a run
get_agent_runsList runs for an agent.List runs for an agent
get_run_statusStatus of a single run.Get run status
stop_agentStop a run gracefully.Stop a run
kill_agentForce-kill a run.Kill a run
delete_runDelete a run from history.Delete a run

Files

ToolWhat it doesREST equivalent
get_run_filesList output files for a run.List run output files
get_file_download_urlSigned URL to download one file.Download a run file

Versions

ToolWhat it doesREST equivalent
get_agent_versionsList all versions of an agent.List versions
restore_agent_versionRoll back to a previous version.Restore version

Schedules

ToolWhat it doesREST equivalent
list_agent_schedulesList schedules for an agent.List schedules
get_agent_scheduleRead one schedule.Get schedule
create_agent_scheduleCreate a CRON / RunEvery / RunOnce schedule.Create schedule
update_agent_scheduleModify a schedule.Update schedule
enable_agent_scheduleResume a paused schedule.Enable schedule
disable_agent_schedulePause without deleting.Disable schedule
delete_agent_scheduleDelete a schedule.Delete schedule
get_scheduled_runsUpcoming run instances from active schedules.Upcoming schedules

Spaces

ToolWhat it doesREST equivalent
list_spacesAll spaces visible to the user.List spaces
get_spaceRead one space.Get a space
get_space_agentsAgents inside a space.List space agents
search_space_by_nameFind a space by name.Search spaces
run_space_agentsRun every agent in a space.Run all

Billing

ToolWhat it doesREST equivalent
get_credits_balanceCurrent credit balance.Credits balance
get_spending_summaryAggregate spend over a window.Spending
get_credit_historyTransaction-level credit ledger.Credit history
get_agents_usagePer-agent usage roll-up.Agents usage
get_agent_cost_breakdownPer-agent cost detail.Agent cost
get_agent_runs_costCost per run for one agent.Agent runs cost

Analytics

ToolWhat it doesREST equivalent
get_runs_summaryAggregate run counts by status.Runs summary
get_records_summaryAggregate records extracted.Records summary
get_run_diagnosticsFailure diagnostics for one run.Run diagnostics
get_latest_failureMost 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 toolREST equivalent
start_agent_builder_sessionStart a session
get_agent_builder_session_statusSession status
get_agent_builder_session_eventsSession events
get_agent_builder_session_conversationSession conversation
send_agent_builder_session_followupSend follow-up
finish_agent_builder_sessionFinish session
cancel_agent_builder_sessionCancel session
stop_agent_builder_sessionStop session
When these ship, this page is updated and the “Coming to MCP” section folds into the relevant categories above.