Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"yesdev-mcp-server": {
"env": {
"YESDEV_ACCESS_TOKEN": "你的YesDev令牌"
},
"args": [
"/path/to/bin/yesdev-mcp-server"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
定位:一款专为程序员自动登记每日开发工时的开源MCP工具,可以用在Cursor、VSCode等!
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@yesdevcn/yesdev-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @yesdevcn/yesdev-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP Security Weekly
Get CVE alerts and security updates for Yesdev Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
定位:一款专为程序员自动登记每日开发工时的开源MCP工具,可以用在Cursor、VSCode等!
基于 YesDev项目管理工具 ,进行我的任务工时的登记和AI管理。重点解决两大矛盾:
你可以通过 npm 或 yarn 在全局安装本工具:
npm install -g @yesdevcn/yesdev-mcp-server
查看你本地后安装的目录位置,确保有执行权限:
$ which yesdev-mcp-server
/Users/dogstar/.nvm/versions/node/v18.20.4/bin/yesdev-mcp-server
$ chmod +x /Users/dogstar/.nvm/versions/node/v18.20.4/bin/yesdev-mcp-server
在 Cursor 的配置中添加以下内容:
{
"mcpServers": {
"yesdev-mcp-server": {
"command": "node",
"args": ["/path/to/bin/yesdev-mcp-server"],
"env": {
"YESDEV_ACCESS_TOKEN": "你的YesDev令牌"
}
}
}
}
对于上面的路径,更换成你本地的安装路径,使用前面的
which yesdev-mcp-server可获得。
例如,在Cursor中的提问:
请帮我把我今天做的新系统开发,在yesdev同步创建一个新项目。
然后,把我做的功能、界面需求,分别创建对应的需求。
最后,帮我录入对应的需求任务和工时。
调用MCP工具:

最后,AI在YesDev创建的新项目、需求、任务和工时:

常用的提示词参考:
git clone https://github.com/yesdevcn/yesdev-mcp-server.git
cd yesdev-mcp-server
npm install
.env 文件:cp .env.example .env
# 获取方式:https://www.yesdev.cn/platform/account/accountInfo
YESDEV_ACCESS_TOKEN=填写你自己的令牌
启动开发服务器:
npm run dev
npm run build
npm start
运行效果,类似如下:
$ npm run build && npm start
> yesdev-mcp-server@1.0.0 build
> tsc && chmod 755 dist/index.js
> yesdev-mcp-server@1.0.0 start
> node dist/index.js
正在注册工具...
YesDev MCP Server 已启动
已注册的工具: [
'search_staff', 'get_workgroup_list',
'get_my_profile', 'create_task',
'get_task_detail', 'update_task',
'remove_task', 'query_tasks',
'get_my_task_list', 'get_project_task_list',
'get_my_project_list', 'get_project_detail',
'update_project', 'create_project',
'update_project_status', 'update_project_time',
'get_project_list', 'create_need',
'update_need', 'get_need_detail',
'get_need_detail_lite', 'remove_need',
'query_needs', 'get_project_needs',
'get_sub_needs', 'submit_daily_report',
'get_my_problems', 'update_problem'
]
| 工具分类 | 工具名称 | 工具功能介绍 | API 接口 (点击查看文档) |
|---|---|---|---|
| 通用 | get_my_profile | 获取我的个人资料 | Platform.User.Profile |
search_staff | 根据员工姓名或工号搜索员工信息 | Platform.Staff.GetOrSearchStaffDropList | |
get_workgroup_list | 获取所有的工作组列表 | Platform.Workgroup.GetWorkgroupDropList | |
| 任务 | create_task | 创建一个新的YesDev任务 | Platform.Tasks.CreateNewTask |
get_task_detail | 获取指定任务的详细信息 | [Platform.Tasks.GetTaskDetail](https://www.yesdev.cn/docs.php?service=Platform.Tasks.GetTas |