MCP tool reference
Projects
MCP tools for projects.
Generated from the live tool catalog in packages/mcp/src/server.ts. Run pnpm mcp-docs in apps/docs to regenerate after changing a tool.
list_projects
List projects, optionally filtered by initiative.
| Parameter | Type | Required | Description |
|---|---|---|---|
initiative | string | no | Initiative name or id |
create_project
Create a project, optionally under an initiative and linked to teams.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | yes | |
description | string | no | |
status | "backlog" | "planned" | "started" | "paused" | "completed" | "canceled" | no | |
initiative | string | no | Initiative name or id |
lead | string | no | User email, id, or 'me' |
teams | string[] | yes | Team keys - every project belongs to >=1 team |
startDate | string | no | YYYY-MM-DD |
targetDate | string | no | YYYY-MM-DD |
update_project
Update a project by name or id. Only provided fields change.
| Parameter | Type | Required | Description |
|---|---|---|---|
project | string | yes | Project name or id |
name | string | no | |
description | string | no | |
status | "backlog" | "planned" | "started" | "paused" | "completed" | "canceled" | no | |
initiative | string | no | |
lead | string | no | |
teams | string[] | no | |
startDate | string | no | |
targetDate | string | no |