Dart MCP Server

dart-create

Input Schema

NameRequiredDescriptionDefault
optionsNoAdditional project creation options
outputNoDirectory where to create the project
projectNameYesName of the project to create
templateNoTemplate to use for project generationpackage

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "options": { "description": "Additional project creation options", "items": { "type": "string" }, "type": "array" }, "output": { "description": "Directory where to create the project", "type": "string" }, "projectName": { "description": "Name of the project to create", "type": "string" }, "template": { "default": "package", "description": "Template to use for project generation", "enum": [ "console", "package", "server-shelf", "web" ], "type": "string" } }, "required": [ "projectName" ], "type": "object" }