proxy_tool_call
Facilitates dynamic tool execution within the MCP Server For Local by accepting dictionary-formatted requests, enabling seamless integration and interaction with external tools.
Instructions
代理工具,根据工具名动态调用其他服务端的工具,输入格式为字典:{'tool': 'tool_name', 'args': {...}}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"additionalProperties": true,
"title": "Params",
"type": "object"
}
},
"required": [
"params"
],
"title": "proxy_tool_callArguments",
"type": "object"
}