A hosted Model Context Protocol server for authoring, running, and approving durable, always-on AI automations on Highway — from any MCP host (Claude, opencode, Cursor, mobile). No infrastructure to run on your side.
https://mcp.highway.rodmena.app/mcp
· Transport: streamable-http · Auth: Bearer API key
Add the server URL and your Highway API key as an Authorization: Bearer header.
A generic MCP client config:
{
"mcpServers": {
"highway": {
"type": "http",
"url": "https://mcp.highway.rodmena.app/mcp",
"headers": { "Authorization": "Bearer hw_k1_YOUR_KEY_HERE" }
}
}
}
Claude Code (CLI):
claude mcp add --transport http highway https://mcp.highway.rodmena.app/mcp \
--header "Authorization: Bearer hw_k1_YOUR_KEY_HERE"
Only the API key, and only in your client (the header above). You do
not set a tenant id — Highway derives your tenant from the key. One key =
one tenant. Get a key (hw_k1_…) from your Highway dashboard.
| run_goal | Start a durable agent that pursues a natural-language goal to completion. Returns a workflow_run_id; the agent keeps running server-side even after you disconnect. |
| get_status | Get a run's status, progress, result, and any actions awaiting your approval. |
| approve | Approve or reject a paused action to resume the run — works across devices. |
| schedule_goal | Run a goal on a recurring cron schedule (e.g. a daily report email), unattended. |
run_goal / schedule_goal.approve.get_status.