get-tool
Retrieve the complete schema, including input details, for a specific tool on any MCP server. Ensures accurate usage by requiring server name and tool name.
Instructions
Get complete schema for a specific tool from a specific server, including inputSchema. 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 containing the tool | |
toolName | Yes | Exact name of the tool to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"serverName": {
"description": "Name of the MCP server containing the tool",
"type": "string"
},
"toolName": {
"description": "Exact name of the tool to retrieve",
"type": "string"
}
},
"required": [
"serverName",
"toolName"
],
"type": "object"
}