create_tool_template
Generate customizable template code for new MCP tools, including tool name, parameters, and descriptions, to streamline development on the MCP Maker server.
Instructions
Generates template code for a new MCP tool with customizable parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
output_dir | Yes | ||
parameters | Yes | ||
tool_name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"minLength": 1,
"type": "string"
},
"output_dir": {
"type": "string"
},
"parameters": {
"items": {
"additionalProperties": false,
"properties": {
"description": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"required": {
"type": "boolean"
},
"type": {
"enum": [
"string",
"number",
"boolean",
"array",
"object"
],
"type": "string"
}
},
"required": [
"name",
"type",
"required",
"description"
],
"type": "object"
},
"type": "array"
},
"tool_name": {
"minLength": 1,
"type": "string"
}
},
"required": [
"tool_name",
"description",
"parameters",
"output_dir"
],
"type": "object"
}