Runway Dev — Model Routers
Companion: Use
+runway-devfor shared guidance when available. If it is not installed, inspect the workspace, probeRUNWAYML_API_SECRETwithout printing it, and read current docs. Encourage connecting Dev MCP to inspect or manage router configs. If the user declines or cannot connect, continue integration from current docs and an existingconfigId.
Goal
Keep a Model Router and its application integration correct. Verify changes with one routed SDK call (client.generate.{video|image|audio}.create({ configId, input })) when safe.
MCP tools
list_model_routers/get_model_router— find a router byconfigId, then inspect it using the returned record UUID.list_models— inspect eligible models and capabilities.create_model_router/update_model_router/delete_model_router— manage routers after user approval; updates replace the full configuration.get_credit_balance— check budget before proposing credit ceilings or testing.get_task_routing— explain which model handled an existing routed task.
New router
list_modelsacross relevant endpoints — do not guess eligible models or capabilities.get_credit_balance— understand budget before proposing credit ceilings.- Propose: name, immutable
configIdslug, description, routing preference, model-list policy, capacity fallback, optional credit caps. Wait for user approval unless they supplied all fields. create_model_router, thenupdate_model_routerfor settings if needed.- Validate the intended payload with HTTP
dryRun: truebefore a billable generation; the SDK does not currently support dry runs. - When billable verification is appropriate, make one routed SDK call with the wait helper chained directly from
create(), then useget_task_routingto explain which model ran.
Existing router
- Use
list_model_routersto resolve the application'sconfigIdslug to a router record, then callget_model_routerwith its UUID. - Clarify integration goal (wire into app vs test call).
- Implement the routed generate call behind the application's server boundary per https://docs.dev.runwayml.com/model-routers.md, chaining the SDK wait helper directly from
create(). - Validate the same payload with HTTP
dryRun: truebefore any billable verification. - After an approved live test, use
get_task_routingto confirm which model ran.
Terminology
- Router record id (UUID) ≠ configId (immutable slug used in SDK
configIdfield).
Docs
- https://docs.dev.runwayml.com/llms.txt (model routers section)
- https://docs.dev.runwayml.com/model-routers.md