Dida365 MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DIDA_CLIENT_ID | Yes | The Client ID obtained from the Dida365 developer portal. | |
| DIDA_REDIRECT_URI | No | The OAuth Redirect URL, which should be set to http://localhost:18090/callback in the Dida365 developer portal. | http://localhost:18090/callback |
| DIDA_CLIENT_SECRET | Yes | The Client Secret obtained from the Dida365 developer portal. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_projectsA | 获取所有项目(清单)列表。返回所有项目的名称、ID、颜色等信息。 |
| get_project_detailA | 获取指定项目的详细信息及其所有任务。 |
| create_projectC | 创建新的项目(清单)。 |
| delete_projectA | 删除指定的项目(清单)。⚠️ 此操作不可恢复。 |
| get_all_tasksB | 获取所有未完成的任务列表,包含任务的标题、截止日期、优先级、所属清单等信息。 |
| create_taskA | 创建新任务。可以指定标题、所属项目、截止日期、优先级、标签等。不指定项目则放入收集箱。 |
| update_taskB | 更新已有任务的信息,如标题、截止日期、优先级等。需要提供 task_id 和 project_id。 |
| complete_taskB | 将指定任务标记为已完成。需要提供 task_id 和 project_id。 |
| delete_taskA | 删除指定任务。⚠️ 此操作不可恢复。需要提供 task_id 和 project_id。 |
| get_tasks_due_todayB | 获取今天到期的所有任务。 |
| get_overdue_tasksB | 获取所有已过期(逾期)的任务。 |
| get_tasks_by_priorityC | 按优先级获取任务。 |
| search_tasksA | 搜索任务。可以按标题、内容、标签进行模糊搜索。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
每个工具都有明确且独特的用途:创建、删除、更新、完成任务,以及多种查询(全部、逾期、按优先级、今天到期、搜索),没有功能重叠,区分清晰。
所有工具名称均采用一致的动词_名词模式(如create_project、delete_task、get_all_tasks),全部使用小写和下划线,命名风格统一。
13个工具数量适中,全面覆盖任务管理核心操作(项目CRUD、任务CRUD及多种过滤查询),没有冗余或不足。
覆盖了任务和项目的基本CRUD及常见查询,但缺少更新项目功能和直接按ID获取单个任务详情,存在轻微功能缺口。