get_projects
Returns all projects visible to the current user. Projects organize deliverables into workstreams.
Input Schema
{
"type": "object",
"properties": {}
}Output Schema
{
"type": "array",
"items": {
"type": "object",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"status": {
"type": "string"
},
"created_by": {
"type": "string"
},
"visibility": {
"type": "string"
},
"member_count": {
"type": "integer"
},
"deliverable_count": {
"type": "integer"
}
}
}
}Instructions
Returns all projects visible to the current user. Projects organize deliverables into workstreams.
Use the id with get_project to retrieve project details, or pass project_id when creating deliverables to associate them with a project.