{
  "name": "tool.describe",
  "group": "meta",
  "summary": "Get the full parameter schema and worked examples for one tool.",
  "description": "Returns everything needed to call a tool correctly: its complete JSON Schema, every parameter with type and default, and examples known to work. Pair it with tool.search — search to find the name, describe to learn the shape, then call. This exists so the catalogue does not have to be loaded into context up front.",
  "keywords": [
    "describe tool",
    "tool schema",
    "parameters",
    "how do i call",
    "tool reference",
    "signature"
  ],
  "endpoint": "https://fluentedi.com/v1/tool/describe",
  "mcp_name": "tool_describe",
  "makes_network_request": false,
  "parameters": {
    "type": "object",
    "properties": {
      "name": {
        "description": "Tool name, e.g. \"time.window\". Underscores and slashes are accepted too.",
        "type": "string",
        "maxLength": 100,
        "examples": [
          "time.window"
        ]
      }
    },
    "required": [
      "name"
    ],
    "additionalProperties": false
  },
  "examples": [
    {
      "description": "Learn how to call time.window",
      "url": "https://fluentedi.com/v1/tool/describe?name=time.window",
      "args": {
        "name": "time.window"
      }
    }
  ],
  "suggestion": null
}