list_modules
Retrieve all modules associated with a specific project using the project_id. This tool supports effective project management by organizing and accessing module details within the Plane MCP Server.
Instructions
Get all modules for a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The uuid identifier of the project to get modules 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 modules for",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}