generate_mcp_boilerplate
Generate a new MCP server project with essential boilerplate files, including customizable prompts and resources, for streamlined project setup.
Instructions
Creates a new MCP server project with all the necessary boilerplate files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
include_prompts | No | ||
include_resources | No | ||
output_dir | Yes | ||
project_name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"minLength": 1,
"type": "string"
},
"include_prompts": {
"type": "boolean"
},
"include_resources": {
"type": "boolean"
},
"output_dir": {
"type": "string"
},
"project_name": {
"minLength": 1,
"type": "string"
}
},
"required": [
"project_name",
"description",
"output_dir"
],
"type": "object"
}