mcp-tool-builder

create_tool

Create a new Python tool with specified functionality

Input Schema

NameRequiredDescriptionDefault
codeYesPython code implementing the tool
descriptionYesDescription of what the tool should do
tool_nameYesName of the new tool

Input Schema (JSON Schema)

{ "properties": { "code": { "description": "Python code implementing the tool", "type": "string" }, "description": { "description": "Description of what the tool should do", "type": "string" }, "tool_name": { "description": "Name of the new tool", "type": "string" } }, "required": [ "tool_name", "description", "code" ], "type": "object" }