call-tool
Execute a specific tool from a designated MCP server by providing the server name, tool name, and arguments. Use after identifying tools with find-tools.
Instructions
Call a specific tool from a specific server. TIP: Use find-tools first to discover the tool and get the correct serverName and toolName
Input Schema
Name | Required | Description | Default |
---|---|---|---|
serverName | Yes | Name of the MCP server to call tool from | |
toolArgs | Yes | Arguments to pass to the tool | |
toolName | Yes | Name of the tool to call |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"serverName": {
"description": "Name of the MCP server to call tool from",
"type": "string"
},
"toolArgs": {
"additionalProperties": {},
"description": "Arguments to pass to the tool",
"type": "object"
},
"toolName": {
"description": "Name of the tool to call",
"type": "string"
}
},
"required": [
"serverName",
"toolName",
"toolArgs"
],
"type": "object"
}