Ghost MCP Server

by MFYDev
Verified

import_module

Import a module.

The 'package' argument is required when performing a relative import. It specifies the package to use as the anchor point from which to resolve the relative import to an absolute import.

Input Schema

NameRequiredDescriptionDefault
nameYes
packageNo

Input Schema (JSON Schema)

{ "properties": { "name": { "title": "name", "type": "string" }, "package": { "default": null, "title": "package", "type": "string" } }, "required": [ "name" ], "title": "import_moduleArguments", "type": "object" }