Plane MCP Server

Official

get_state

Retrieve detailed information about a specific state within a project using the Plane MCP Server. Provide project and state IDs to access the state's attributes and configuration.

Instructions

Get details of a specific state

Input Schema

NameRequiredDescriptionDefault
project_idYesThe uuid identifier of the project containing the state
state_idYesThe uuid identifier of the state to get

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 get", "type": "string" } }, "required": [ "project_id", "state_id" ], "type": "object" }
ID: y5g9z3v76n