The Documentation category provides endpoints for accessing API documentation directly through the Smooth Operator Tools Server. These endpoints are designed to help agents and developers understand how to use the tools server without requiring external documentation.
Provides a concise overview of the Smooth Operator Tools Server and its available endpoints.
Returns the complete API documentation in Markdown format, including all endpoints, parameters, and examples.
Returns detailed documentation for a specific tool by name. Useful for understanding parameters and usage patterns for individual tools.
mouse_click
, automation_invoke
).Here's how you can use these documentation endpoints:
curl -X GET "http://localhost:54321/tools-api/docs/explain-short" \
-H "Authorization: Bearer YOUR_API_KEY"
curl -X GET "http://localhost:54321/tools-api/docs/full" \
-H "Authorization: Bearer YOUR_API_KEY"
curl -X GET "http://localhost:54321/tools-api/docs/tool/mouse_click" \
-H "Authorization: Bearer YOUR_API_KEY"