Node Omnibus MCP Server

generate_component

Generate a new React component with TypeScript support

Input Schema

NameRequiredDescriptionDefault
nameYesComponent name
pathYesComponent directory path
propsNoComponent props with types
typeYesComponent type

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "Component name", "type": "string" }, "path": { "description": "Component directory path", "type": "string" }, "props": { "additionalProperties": { "type": "string" }, "description": "Component props with types", "type": "object" }, "type": { "description": "Component type", "enum": [ "functional", "class" ], "type": "string" } }, "required": [ "name", "path", "type" ], "type": "object" }