Smithery
tools.get
Retrieve detailed information about a specific tool using its slug identifier. This endpoint returns full metadata about a tool including input/output parameters, versions, and toolkit information.
Remote smithery/composio
Other tools also called tools.get?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"version": {
"type": "string",
"description": "Optional version of the tool to retrieve"
},
"tool_slug": {
"type": "string",
"description": "The unique slug identifier of the tool"
},
"toolkit_versions": {
"oneOf": [
{
"type": "null"
},
{
"type": "string"
},
{
"type": "object",
"description": "Object representation of parsed bracket notation",
"additionalProperties": {
"type": "string"
}
}
],
"description": "Toolkit version specification. Use \"latest\" for latest versions or bracket notation for specific versions per toolkit."
}
}
}