MCP Task Manager Server

exportProject

Export a project's complete data set, including metadata, tasks, and dependencies, as a JSON string using the project ID.

Instructions

Exports the complete data set for a specified project as a JSON string. This includes project metadata, all tasks (hierarchically structured), and their dependencies. Requires the project ID. The format is fixed to JSON for V1. Returns the JSON string representing the project data.

Input Schema

NameRequiredDescriptionDefault
formatNoOptional format for the export. Currently only 'json' is supported (default).json
project_idYesThe unique identifier (UUID) of the project to export.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "format": { "const": "json", "default": "json", "description": "Optional format for the export. Currently only 'json' is supported (default).", "type": "string" }, "project_id": { "description": "The unique identifier (UUID) of the project to export.", "format": "uuid", "type": "string" } }, "required": [ "project_id" ], "type": "object" }

You must be authenticated.

Other Tools from MCP Task Manager Server

Related Tools

ID: iidipqwk2z