@damper/mcp 0.8.1 → 0.8.2

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -119,15 +119,15 @@ server.registerTool('list_tasks', {
119
119
  title: 'List Tasks',
120
120
  description: 'Get roadmap tasks. Returns planned/in-progress by default. ' +
121
121
  'Filter by type, quarter, etc.\n\n' +
122
- 'Returns up to 20 tasks by default. Response includes `total` count. ' +
123
- 'If total > returned tasks, paginate with offset (e.g. offset=20 for page 2).\n\n' +
122
+ 'Returns up to 50 tasks by default. Response includes `total` count. ' +
123
+ 'If total > returned tasks, paginate with offset (e.g. offset=50 for page 2).\n\n' +
124
124
  '**Recommended:** Call `get_project_context` before starting work to understand codebase patterns.',
125
125
  inputSchema: z.object({
126
126
  status: z.enum(['planned', 'in_progress', 'done', 'all']).optional(),
127
127
  type: z.enum(['bug', 'feature', 'improvement', 'task']).optional().describe('Filter by task type'),
128
128
  quarter: z.string().optional().describe('Filter by quarter (e.g., "Q1 2025") or "none" for unscheduled'),
129
129
  sort: z.enum(['importance', 'newest', 'votes']).optional().describe('Sort order: importance (priority+votes, default), newest, or votes'),
130
- limit: z.number().optional().describe('Max tasks to return (default: 20)'),
130
+ limit: z.number().optional().describe('Max tasks to return (default: 50)'),
131
131
  offset: z.number().optional().describe('Skip first N tasks for pagination (default: 0)'),
132
132
  }),
133
133
  outputSchema: z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/mcp",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "MCP server for Damper task management",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {