delete_state
Remove a specific state from a project in Plane MCP Server by providing the project and state UUID identifiers, simplifying state management within project workflows.
Instructions
Delete a state
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The uuid identifier of the project containing the state | |
state_id | Yes | The uuid identifier of the state to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The uuid identifier of the project containing the state",
"type": "string"
},
"state_id": {
"description": "The uuid identifier of the state to delete",
"type": "string"
}
},
"required": [
"project_id",
"state_id"
],
"type": "object"
}