Get one Weeek project
weeek_get_projectRetrieve a single Weeek project's full detail by ID, including description, title, color, and privacy status. Use to confirm project existence or access complete project information.
Instructions
PRIMARY tool for fetching a single Weeek project's full detail by id, including description ({id, title, description, color, isPrivate}). DISTINCT from weeek_list_projects, which returns summaries only ({id, title, color, isPrivate}) without descriptions and without support for fetching by id. Use when you already know the project id (from weeek_list_projects or the Weeek UI) and need the description or want to confirm a single project still exists. Unknown ids surface as weeek_get_project failed (weeek_not_found).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Weeek project identifier (from list_projects or the Weeek UI) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Stable Weeek project identifier | |
| color | Yes | Hex or named accent color | |
| title | Yes | Project title | |
| isPrivate | Yes | True if the project is private | |
| truncated | Yes | True if the response was clipped by the server's MAX_RESPONSE_CHARS gate. Only `description` is clipped (other fields are fixed-shape); raise MAX_RESPONSE_CHARS in the server env to receive the full text. | |
| description | Yes | Project description (nullable). May end with the marker '…[truncated]' if the response hit MAX_RESPONSE_CHARS — see the truncated field. |