list_states
Retrieve all states for a specific project using its unique identifier to manage and organize project workflows within the Plane MCP Server.
Instructions
Get all states for a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The uuid identifier of the project to get states for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The uuid identifier of the project to get states for",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}