Skip to main content
MCP resources are cacheable reads, pure GETs against a orisu:// URI. They’re how the assistant inspects state without spending a tool call.

Discovery resources

Read orisu://nodes once at the start of any build session. The assistant needs it to pick node types.

State resources

Account resources

Reference resources

UI resources

When to read what

The workflow skill opens with the “Discovery: always do this before designing” section that maps tasks to the resources you should read first. Short version:
  • Building a new workflow → read orisu://nodes, then orisu://nodes/{type} for each node type you’ll use
  • Editing an existing agent → read orisu://agents/{id} (or call view_agent)
  • Picking a model → read orisu://models or call suggest_model
  • Checking a run → call wait_for_run (single round-trip) instead of polling orisu://runs/{id}
  • Loading a brand context → read orisu://brand-kits then orisu://brand-kits/{id}

See also

Tools

The 20+ tools that mutate or trigger state.

Errors

What RESOURCE_NOT_FOUND and friends mean.