AI代理任务管理服务器
可用工具 (2 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
todo_read
该工具无需必填参数,直接调用即可
todo_write 1 个参数 需填 1 项
必填参数:todos
服务介绍
AI代理任务管理服务器 todolist
为大型语言模型和AI代理提供外部工作记忆和任务管理功能,支持复杂多步骤任务的可靠执行。
null## 工具列表 Tool List
本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。
| 工具 Tool | 描述 Description |
|---|---|
| todo_read | Use this tool to read the current to-do list for the session. This tool should be used proactively and frequently to ensure that you are aware of the status of the current task list. You should make use of this tool as often as possible, especially in the following situations: - At the beginning of conversations to see what's pending - Before starting new tasks to prioritize work - When the user asks about previous tasks or plans - Whenever you're uncertain about what to do next - After completing tasks to update your understanding of remaining work - After every few messages to ensure you're on track Usage: - This tool takes in no parameters. So leave the input blank or empty. DO NOT include a dummy object, placeholder string or a key like "input" or "empty". LEAVE IT BLANK. - Returns a list of todo items with their status, priority, and content - Use this information to track progress and plan next steps - If no todos exist yet, an empty list will be returned |
| todo_write | Use this tool to create and manage a structured task list for your current coding session. This helps you track progress, organize complex tasks, and demonstrate thoroughness to the user. It also helps the user understand the progress of the task and overall progress of their requests. ## When to Use This Tool Use this tool proactively in these scenarios: 1. Complex multi-step tasks - When a task requires 3 or more distinct steps or actions 2. Non-trivial and complex tasks - Tasks that require careful planning or multiple operations 3. User explicitly requests todo list - When the user directly asks you to use the todo list 4. User provides multiple tasks - When users provide a list of things to be done (numbered or comma-separated) 5. After receiving new instructions - Immediately capture user requirements as todos 6. When you start working on a task - Mark it as in_progress BEFORE beginning work. Ideally you should only have one todo as in_progress at a time 7. After completing a task - Mark it as completed and add any new follow-up tasks discovered during implementation ## When NOT to Use This Tool Skip using this tool when: 1. There is only a single, straightforward task 2. The task is trivial and tracking it provides no organizational benefit 3. The task can be completed in less than 3 trivial steps 4. The task is purely conversational or informational NOTE that you should not use this tool if there is only one trivial task to do. In this case you are better off just doing the task directly. ## Task States and Management 1. Task States: Use these states to track progress: - pending: Task not yet started - in_progress: Currently working on (limit to ONE task at a time) - completed: Task finished successfully 2. Task Management: - Update task status in real-time as you work - Mark tasks complete IMMEDIATELY after finishing (don't batch completions) - Only have ONE task in_progress at any time - Complete current tasks before starting new ones - Remove tasks that are no longer relevant from the list entirely 3. Task Completion Requirements: - ONLY mark a task as completed when you have FULLY accomplished it - If you encounter errors, blockers, or cannot finish, keep the task as in_progress - When blocked, create a new task describing what needs to be resolved - Never mark a task as completed if: - Tests are failing - Implementation is partial - You encountered unresolved errors - You couldn't find necessary files or dependencies 4. Task Breakdown: - Create specific, actionable items - Break complex tasks into smaller, manageable steps - Use clear, descriptive task names When in doubt, use this tool. Being proactive with task management demonstrates attentiveness and ensures you complete all requirements successfully. Args: todos: The updated todo list. Each todo item must contain: - content: Task description (string, minimum 1 character) - id: Unique task identifier (string) - priority: Priority level ("high", "medium", "low") - status: Task status ("pending", "in_progress", "completed") Returns: Success message or auto-clear notification if all tasks completed |
检查服务 ## Inspector
工具在线测试: https://mcp.xiaobenyang.com/inspector/1777419077918723
Online Tool test https://mcp.xiaobenyang.com/inspector/1777419077918723
服务配置 MCP Server Config
如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?
访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY
Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.
SSE
{
"mcpServers": {
"AI代理任务管理服务器": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "sse",
"url": "https://mcp.xiaobenyang.com/1777419077918723/sse"
}
}
}
STREAMABLE HTTP
{
"mcpServers": {
"AI代理任务管理服务器": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "streamable_http",
"url": "https://mcp.xiaobenyang.com/1777419077918723/mcp"
}
}
}
STDIO
{
"mcpServers": {
"AI代理任务管理服务器": {
"command": "npx",
"args": [
"-y",
"xiaobenyang-mcp"
],
"env": {
"XBY_APIKEY": "<YOUR_XBY_APIKEY>",
"mcpId": "1777419077918723",
},
"transport": "stdio"
}
}
}