Smithery

tool_router.session.execute_meta.create

Executes a Composio meta tool (COMPOSIO_*) within a tool router session. This endpoint is kept for meta-tool compatibility; clients can also use the primary /execute endpoint.

Remote smithery/composio

Other tools also called tool_router.session.execute_meta.create? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "slug": {
      "enum": [
        "COMPOSIO_SEARCH_TOOLS",
        "COMPOSIO_MULTI_EXECUTE_TOOL",
        "COMPOSIO_MANAGE_CONNECTIONS",
        "COMPOSIO_WAIT_FOR_CONNECTIONS",
        "COMPOSIO_REMOTE_WORKBENCH",
        "COMPOSIO_REMOTE_BASH_TOOL",
        "COMPOSIO_GET_TOOL_SCHEMAS",
        "COMPOSIO_UPSERT_RECIPE",
        "COMPOSIO_GET_RECIPE"
      ],
      "type": "string",
      "example": "COMPOSIO_MANAGE_CONNECTIONS",
      "description": "The unique slug identifier of the meta tool to execute"
    },
    "arguments": {
      "type": "object",
      "default": {},
      "example": {
        "toolkits": [
          "github"
        ],
        "reinitiate_all": false
      },
      "description": "The arguments required by the meta tool",
      "additionalProperties": {
        "nullable": true
      }
    },
    "session_id": {
      "type": "string",
      "format": "toolRouterSessionId",
      "example": "trs_LX9uJKBinWWr",
      "description": "Tool router session ID (required for public API, optional for internal - injected by middleware)"
    }
  }
}