Node Omnibus MCP Server

create_type_definition

Create TypeScript type definitions or interfaces

Input Schema

NameRequiredDescriptionDefault
nameYesType name
pathYesFile path
propertiesYesType properties and their types

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "Type name", "type": "string" }, "path": { "description": "File path", "type": "string" }, "properties": { "additionalProperties": { "type": "string" }, "description": "Type properties and their types", "type": "object" } }, "required": [ "name", "path", "properties" ], "type": "object" }