Smithery
tool_router.session.search.create
Search for tools matching a given use case query within a tool router session. Returns matching tool slugs, full tool schemas, toolkit connection statuses, and workflow guidance in a predictable format.
Remote smithery/composio
Other tools also called tool_router.session.search.create?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"model": {
"type": "string",
"example": "gpt-4o",
"description": "Optional model hint for search/planning behavior (e.g., \"gpt-4o\"). Ignored if invalid."
},
"queries": {
"type": "array",
"items": {
"type": "object",
"required": [
"use_case"
],
"properties": {
"use_case": {
"type": "string",
"example": "Send an email to [email protected] with a summary of my last 5 slack messages",
"maxLength": 1024,
"minLength": 1,
"description": "The task or use case to search tools for. Provide a detailed description to get the best results. Max 1024 characters."
},
"known_fields": {
"type": "string",
"example": "channel_name:general",
"maxLength": 500,
"description": "Known field hints as key:value pairs (e.g., \"channel_name:general, user_email:[email protected]\"). Max 500 characters."
}
}
},
"example": [
{
"use_case": "Send a slack message to a channel"
}
],
"maxItems": 7,
"minItems": 1,
"description": "List of search queries to execute in parallel. Up to 7 queries supported."
},
"session_id": {
"type": "string",
"format": "toolRouterSessionId",
"example": "trs_LX9uJKBinWWr",
"description": "Tool router session ID (trs_*)"
}
}
}