@damper/mcp 0.3.20 → 0.3.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -111,6 +111,8 @@ server.registerTool('list_tasks', {
|
|
|
111
111
|
title: 'List Tasks',
|
|
112
112
|
description: 'Get roadmap tasks. Returns planned/in-progress by default. ' +
|
|
113
113
|
'Filter by type, quarter, etc.\n\n' +
|
|
114
|
+
'Returns up to 20 tasks by default. Response includes `total` count. ' +
|
|
115
|
+
'If total > returned tasks, paginate with offset (e.g. offset=20 for page 2).\n\n' +
|
|
114
116
|
'**Recommended:** Call `get_project_context` before starting work to understand codebase patterns.',
|
|
115
117
|
inputSchema: z.object({
|
|
116
118
|
status: z.enum(['planned', 'in_progress', 'done', 'all']).optional(),
|