MCP Task Manager Server_importProject
Import project data from a JSON string to create a new project, ensuring validation for structure, parsing, and size limits. Returns the unique project_id upon successful creation.
Instructions
Creates a new project by importing data from a JSON string. The JSON data must conform to the structure previously generated by the 'exportProject' tool. Performs validation on the input data (parsing, basic structure, size limit). Returns the unique project_id of the newly created project upon success.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_project_name | No | Optional name for the newly created project (max 255 chars). If omitted, a name based on the original project name and import timestamp will be used. | |
project_data | Yes | Required. A JSON string containing the full project data, conforming to the export structure. Max size e.g., 10MB. |