list_projects
Lists the DEON projects the caller can access. Returns each project's id, name, and last-updated time. Use a project id with get_project or any of the canvas tools.
Tool name: list_projects
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
amount | number | No | 50 | Maximum projects to return. Positive integer, max 200. |
includeTemplates | boolean | No | false | Return template projects instead of regular projects. |
Returns
A JSON object with the number of projects and a list of project summaries:
{
"count": 2,
"projects": [
{
"id": "a1b2c3d4-...",
"name": "Product Roadmap",
"lastUpdated": "2026-07-01T09:12:45Z",
"tenantId": 42
},
{
"id": "e5f6a7b8-...",
"name": "Retrospective Board",
"lastUpdated": "2026-06-28T16:03:11Z",
"tenantId": 42
}
]
}
Example
"Which DEON projects do I have?"
{ "amount": 20 }