Get Project
get_projectRetrieve project metadata by ID to verify existence and check settings. Returns name, color, viewMode, and permissions without tasks.
Instructions
Retrieve metadata for a single project (清单) by ID.
WHEN TO USE:
Check project settings (name/名称, color/颜色, viewMode/视图模式, permissions)
Verify a project exists before operations
Get project metadata without loading tasks
WHEN NOT TO USE:
Need tasks within the project (清单内的任务) → use 'get_project_data' or 'list_tasks'
Need to filter tasks by date/priority (按日期/优先级筛选) → use 'list_tasks'
RETURNS: Project metadata only (id, name/名称, color/颜色, viewMode/视图模式, kind/类型, permissions). Does NOT include tasks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | The unique ID of the project to retrieve (清单ID) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| kind | No | ||
| name | Yes | ||
| color | No | ||
| closed | No | ||
| groupId | No | ||
| viewMode | No | ||
| sortOrder | No | ||
| permission | No |