doforwork.com
discovery · phase 1

list_domls

Search publicly-listed DOs by name, summary, or domain tag. Returns up to 50 matches. Call this first to find a DO before reading its contract with get_doml.

Input

FieldTypeRequiredDescription
query string no Case-insensitive substring matched against title/summary/tags. Empty returns the top public DOs.

Example request

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_domls",
    "arguments": { "query": "KPI Tree" }
  }
}

Example response

{
  "count": 1,
  "domls": [
    {
      "id": "wf_kpi_tree_architect",
      "title": "KPI Tree Architect",
      "summary": "Decompose a top-line metric into a driver tree...",
      "domainTags": ["strategy", "metrics"]
    }
  ]
}

Machine files