execute-tool
Run a specific tool on an MCP server by providing the server ID, tool name, and required arguments to automate tasks or processes.
Instructions
Execute a tool on a server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | No | The arguments to pass to the tool | |
serverId | Yes | The ID of the server | |
toolName | Yes | The name of the tool to execute |
Input Schema (JSON Schema)
{
"properties": {
"args": {
"description": "The arguments to pass to the tool",
"type": "object"
},
"serverId": {
"description": "The ID of the server",
"type": "string"
},
"toolName": {
"description": "The name of the tool to execute",
"type": "string"
}
},
"required": [
"serverId",
"toolName"
],
"type": "object"
}