exec_mcp_tool
Execute specified tools on target MCP servers by providing server name, tool name, and parameters. Enables remote tool execution and service discovery through the MCP Router.
Instructions
Execute a tool on a target MCP server.
Args:
target_server_name: Name of the target server
target_tool_name: Name of the tool to execute
parameters: Parameters for the tool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parameters | Yes | ||
target_server_name | Yes | ||
target_tool_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"parameters": {
"additionalProperties": true,
"title": "Parameters",
"type": "object"
},
"target_server_name": {
"title": "Target Server Name",
"type": "string"
},
"target_tool_name": {
"title": "Target Tool Name",
"type": "string"
}
},
"required": [
"target_server_name",
"target_tool_name",
"parameters"
],
"title": "exec_mcp_toolArguments",
"type": "object"
}