manage_workspace
Configure workspace settings, retrieve usage data, and manage workspace details with predefined actions for organizing and maintaining Tally MCP server environments.
Instructions
Manage workspace settings and information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform on workspace | |
| settings | No |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform on workspace",
"enum": [
"get_info",
"update_settings",
"get_usage"
],
"type": "string"
},
"settings": {
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"action"
],
"type": "object"
}