Skip to content

list_models

Use list_models first to see every accessible model, including other workspaces you belong to (OAuth only; tokens see just their own workspace). Carry the returned workspace_id into read_file, run, commit_files, or other follow-ups to target non-default workspaces.

read-only · idempotent

This tool takes no parameters.

Returns a structured object. Top-level fields:

  • models (array<object>)
  • count (integer)

See the response example below for the full payload shape.

{
"name": "list_models",
"arguments": {}
}
{
"models": [
{
"model": "forecasts",
"role": "owner",
"url": "https://app.bridgetown.example/acme/forecasts"
},
{
"model": "headcount-plan",
"role": "editor",
"url": "https://app.bridgetown.example/acme/headcount-plan"
}
],
"count": 2
}
  • Module: Models
  • Requires authentication via API token or Auth0 JWT.