OzBridge
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| oz_agent_runA | Run a Warp Oz AI agent locally in the host workspace and return its full output synchronously. Runs |
| oz_agent_run_cloudA | Launch a Warp Oz AI agent in Warp's cloud (not on the local machine). ⚠️ CONSUMES WARP CREDITS — confirm with the user before calling. Returns the run id immediately WITHOUT waiting for completion; poll the terminal status and output with |
| oz_run_getA | Fetch the current status and output of a single Warp Oz run by its id. Read-only and idempotent — safe to call repeatedly while polling a cloud run to completion (SUCCEEDED / FAILED). Typically called after |
| oz_run_listA | List recent Warp Oz runs (id, status, timing), newest first. Read-only. Use to discover run ids to pass to |
| oz_list_modelsA | List the AI model ids available to the connected Warp Oz account (from |
| oz_set_default_modelA | Set the default Oz model for every OzBridge surface by writing |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a distinct purpose: local vs cloud execution, listing models, fetching run status, listing runs, setting default model. No ambiguity between tools.
All tools use consistent snake_case naming with 'oz_' prefix and clear verb_noun pattern (e.g., oz_agent_run, oz_list_models, oz_run_get).
6 tools cover the core workflow of running AI agents (local/cloud, model discovery, status polling, configuration) without being too many or too few.
Covers all essential operations: run locally, run in cloud, list models, check status, list runs, set default. Lacks a cancel/abort for cloud runs, which is a minor gap.