manageItemStorage
Configure, retrieve storage information, or generate files for Epics using a defined base and output directory with this MCP server tool.
Instructions
Manages storage configuration and export for Epics.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
basePath | Yes | FULL directory path for storage (required for all actions, e.g., '/path/to/storage') | |
outputDirectory | Yes | FULL output directory path for generated files |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"enum": [
"configure",
"getInfo",
"generateFiles"
],
"type": "string"
},
"basePath": {
"description": "FULL directory path for storage (required for all actions, e.g., '/path/to/storage')",
"type": "string"
},
"outputDirectory": {
"description": "FULL output directory path for generated files",
"type": "string"
}
},
"required": [
"action",
"basePath",
"outputDirectory"
],
"type": "object"
}