Planning
Milestones, cross-project initiatives, and release management.
9 tools
# create_milestone
Create a milestone for a project
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspace_id | string | ● | Workspace ID |
| project_id | string | ● | Project ID |
| name | string | ● | Milestone name |
| description | string | — | Description |
| target_date | string | — | Target date (YYYY-MM-DD) |
# update_milestone
Update a milestone
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspace_id | string | ● | Workspace ID |
| milestone_id | string | ● | Milestone ID |
| name | string | — | Name |
| description | string | — | Description |
| target_date | string | — | Target date |
| status | string | — | open|completed |
# list_milestones
List milestones for a project
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspace_id | string | ● | Workspace ID |
| project_id | string | ● | Project ID |
# create_initiative
Create a cross-project initiative
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspace_id | string | ● | Workspace ID |
| name | string | ● | Initiative name |
| description | string | — | Description |
| owner_email | string | — | Owner email |
| target_date | string | — | Target date |
| status | string | — | active|completed|cancelled |
# update_initiative
Update an initiative
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspace_id | string | ● | Workspace ID |
| initiative_id | string | ● | Initiative ID |
| name | string | — | Name |
| description | string | — | Description |
| owner_email | string | — | Owner |
| target_date | string | — | Target date |
| status | string | — | Status |
# list_initiatives
List all initiatives in the workspace
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspace_id | string | ● | Workspace ID |
# create_release
Create a release for a project
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspace_id | string | ● | Workspace ID |
| project_id | string | ● | Project ID |
| version | string | ● | Version (e.g. v1.2.0) |
| name | string | — | Release name |
| release_date | string | — | Release date |
| status | string | — | planned|released|cancelled |
# update_release
Update a release
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspace_id | string | ● | Workspace ID |
| release_id | string | ● | Release ID |
| version | string | — | Version |
| name | string | — | Name |
| release_date | string | — | Release date |
| status | string | — | Status |
# list_releases
List releases for a project
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspace_id | string | ● | Workspace ID |
| project_id | string | ● | Project ID |