What you can do
Start a Session
Ask your MCP client to start Roomote with a clear message. The ordinary start action creates a Session, where Fast can answer directly or delegate repository work to tasks. You can keep working locally and return to the same Session for the result. When work must start directly in a known compute environment, your client can still use the explicit environment-targeted task launch action.Check on and steer existing work
Search finds Sessions by default. Once you find one, provide its Session ID to read the summary or newest conversation messages and to send a follow-up. When you need one concrete coding task instead, use task search and pass its task ID; the task ID takes precedence if both identifiers are supplied. Compute logs, cancellation, environment-targeted launch, and task model controls remain task-specific operations. For extended coordination, clients can useget_updates instead of re-reading
the full transcript. Each response contains only new user-visible
narrative in chronological order, an opaque cursor for the next poll, current
Session or task state, and an explicit response-needed flag. Tool calls, tool
results, hidden reasoning, and transcript metadata are excluded. Reusing the
cursor after no new activity returns an empty narrative delta rather than the
same messages again; full transcript reads remain available for debugging.
When relaying between Codex and Roomote, summarize substantive messages with
the labels Codex → Roomote and Roomote → Codex. Relay questions or input
needs promptly, skip narration for unchanged polls, and make the final answer
self-contained. Relay summaries should cover visible narrative and decisions,
not credentials, raw tool traces, hidden reasoning, or oversized internal
payloads. Successful follow-up sends include the exact target and text accepted
by Roomote so the client can summarize the outbound message without guessing.
This is useful when you want to:
- catch up on a Session that is already active
- find an earlier investigation or implementation
- inspect a delegated task when you need its execution details
- pull the result of a Roomote task into your current conversation
- send follow-up instructions or cancel task work that is no longer needed
Bring in Roomote and chat context
Ask what your Roomote deployment can do or which integrations are connected. You can also read relevant conversation history from connected chat channels. For Slack and Discord, provide a channel or message link when you want context from a specific conversation. Roomote still applies the access rules from the connected service, so the MCP only returns conversations your signed-in user is allowed to read.Things to try
- “Push what I’m working on to a remote branch, then start a Roomote task from that branch to take over.”
- “Start a Roomote Session to investigate this bug.”
- “Find my active Sessions related to OAuth and summarize their progress.”
- “Find the coding task for this pull request and show its compute logs.”
- “Show me the messages and compute logs from the task that failed this morning.”
- “Tell the running task to add a regression test before it opens the PR.”
- “Read the latest messages from this Fast Session and send a follow-up.”
- “Use this Slack message as context and explain what the team decided.”
- “Cancel the task working on the old approach.”
Connect your MCP client
Use your Roomote URL with/mcp appended:
Claude Code
Add Roomote at user scope so it is available across your projects, then start the browser sign-in:/mcp inside Claude Code to manage the connection and sign
in.
Claude Code requests a temporary loopback URL for the browser to return the
authorization result to the running CLI. Roomote accepts localhost, IPv4, and
IPv6 loopback callbacks with client-selected ports.
Codex
Add the streamable HTTP server, then authenticate it:Cursor
Add Roomote to~/.cursor/mcp.json to use it in every project, or to
.cursor/mcp.json to keep it project-specific:
redirect_uris. Roomote validates and saves that URL, then
only sends the result to the same registered URL after approval. You do not
need to create or copy an API token.
Roomote validates callbacks by callback class instead of maintaining a list of
client-specific URLs: HTTPS for hosted clients, HTTP only on loopback
interfaces for local clients, and non-browser private URI schemes for native
apps. Unsafe browser, file, and network schemes are rejected. The approval page
shows the exact registered callback before Roomote redirects to it.
On a self-hosted deployment, the configured
R_PUBLIC_URL (or R_APP_URL)
must be a browser-reachable HTTPS address. Desktop clients may use a loopback
HTTP callback. Roomote supports the callback forms described above for all
three documented clients.