list_projects
View all projects and their details (ID, initial prompt, task counts) in the MCP task queue system. Optional filters: open, pending_approval, completed, or all states.
Instructions
List all projects in the system and their basic information (ID, initial prompt, task counts), optionally filtered by state (open, pending_approval, completed, all).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
state | No | Filter projects by state. 'open' (any incomplete task), 'pending_approval' (any tasks awaiting approval), 'completed' (all tasks done and approved), or 'all' to skip filtering. |
Input Schema (JSON Schema)
{
"properties": {
"state": {
"description": "Filter projects by state. 'open' (any incomplete task), 'pending_approval' (any tasks awaiting approval), 'completed' (all tasks done and approved), or 'all' to skip filtering.",
"enum": [
"open",
"pending_approval",
"completed",
"all"
],
"type": "string"
}
},
"required": [],
"type": "object"
}