delete_project
Remove a project permanently by its ID using a session ID with Taiga MCP Bridge. This action is irreversible and ensures automated project management cleanup.
Instructions
Deletes a project by its ID. This is irreversible.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"project_id"
],
"title": "delete_projectArguments",
"type": "object"
}