Get Tool

Get detailed information about a specific tool. This endpoint returns comprehensive information about a single tool including: - Tool metadata (name, description, icon) - Input schema - Labels and categorization Args: request: The FastAPI request tool_name: The name of the tool to retrieve Returns: ToolDetails with comprehensive tool information Raises: HTTPException: 404 if tool not found, 403 if not available

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

tool_namestringRequired

Response

Successful Response
tool_namestring

Unique identifier for the tool from @tool decorator

tool_cnamestring
Display name of the tool
groupstring or null
Group the tool belongs to
descriptionstring or null
Description of what the tool does
icon_urlstring or null
URL of the tool's icon
input_schemamap from strings to any or null
JSON Schema for the tool's input parameters
labelslist of strings or null

Labels/tags associated with the tool

Errors