Smithery
tool_router.session.execute.create
Executes a specific tool within a tool router session. This is the primary execution endpoint for both meta tools and app tools exposed by the session. The toolkit is automatically inferred from the tool slug. For app tools, the tool must belong to an allowed toolkit and must not be disabled in the session configuration. The endpoint validates permissions, resolves connected accounts when needed, and executes the tool with the session context. The top-level account field applies only to direct app tool execution in multi-account sessions. Meta/helper tools either ignore it or define their own account-selection fields, for example COMPOSIO_MULTI_EXECUTE_TOOL.tools[].account.
Other tools also called tool_router.session.execute.create?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"account": {
"type": "string",
"example": "coup_hurricane_dal_analytical",
"description": "Account identifier to specify which connected account to use for direct tool execution. Use the account ID (e.g. \"coup_hurricane_dal_analytical\") or an alias. When omitted with a single account, the default is used. When omitted with multiple accounts, an error lists available accounts. Meta/helper tools either ignore this top-level field or define their own account-selection fields, for example COMPOSIO_MULTI_EXECUTE_TOOL.tools[].account."
},
"arguments": {
"type": "object",
"default": {},
"example": {
"ref": "main",
"inputs": {
"environment": "production"
},
"repository": "octocat/Hello-World",
"workflow_id": "main.yml"
},
"description": "The arguments required by the tool",
"additionalProperties": {
"nullable": true
}
},
"tool_slug": {
"type": "string",
"example": "GITHUB_CREATE_AN_ISSUE",
"minLength": 1,
"description": "The unique slug identifier of the tool to execute. Supports both meta tools and app tools exposed by the session."
},
"session_id": {
"type": "string",
"format": "toolRouterSessionId",
"example": "trs_LX9uJKBinWWr",
"description": "Tool router session ID (required for public API, optional for internal - injected by middleware)"
},
"enable_auto_workbench_offload": {
"type": "boolean",
"example": true,
"description": "When true, direct non-meta tool execution may return a workbench offload preview if the response exceeds the configured threshold and the session workbench is enabled. When omitted or false, direct tool execution returns the normal inline response. Meta/helper tools are unaffected, and COMPOSIO_MULTI_EXECUTE_TOOL uses session.workbench configuration for its own batch-level offload behavior."
}
}
}