Node Omnibus MCP Server

create_project

Create a new Node.js project with enhanced configuration

Input Schema

NameRequiredDescriptionDefault
nameYesProject name
pathYesProject directory path
typeYesProject type
typescriptNoEnable TypeScript support

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "Project name", "type": "string" }, "path": { "description": "Project directory path", "type": "string" }, "type": { "description": "Project type", "enum": [ "react", "node", "next", "express", "fastify" ], "type": "string" }, "typescript": { "default": true, "description": "Enable TypeScript support", "type": "boolean" } }, "required": [ "name", "type", "path" ], "type": "object" }