ponlo-ai 1.0.0

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.
@@ -0,0 +1,284 @@
1
+ /**
2
+ * Task Management Tools for Ponlo.ai MCP Server
3
+ */
4
+ /**
5
+ * Register all task management tools
6
+ */
7
+ export function registerTaskTools() {
8
+ return [
9
+ {
10
+ name: 'ponlo_tasks_list',
11
+ description: 'List all tasks in your Ponlo.ai workspace. Shows pending and completed tasks with their details.',
12
+ inputSchema: {
13
+ type: 'object',
14
+ properties: {},
15
+ required: [],
16
+ },
17
+ },
18
+ {
19
+ name: 'ponlo_tasks_create',
20
+ description: 'Create a new task or chore in Ponlo.ai. Tasks can be one-time or recurring (daily, weekly, monthly).',
21
+ inputSchema: {
22
+ type: 'object',
23
+ properties: {
24
+ title: {
25
+ type: 'string',
26
+ description: 'Task title (required)',
27
+ },
28
+ description: {
29
+ type: 'string',
30
+ description: 'Optional task description with more details',
31
+ },
32
+ deadline: {
33
+ type: 'string',
34
+ description: 'Optional deadline in ISO 8601 format (e.g., "2024-12-25T10:00:00Z")',
35
+ },
36
+ resetMode: {
37
+ type: 'string',
38
+ enum: ['once', 'daily', 'weekly', 'monthly', 'manual'],
39
+ description: 'How the task resets after completion: once (one-time), daily, weekly, monthly, or manual',
40
+ },
41
+ resetDay: {
42
+ type: 'number',
43
+ description: 'For weekly: 0-6 (Sunday-Saturday). For monthly: 1-31 (day of month)',
44
+ },
45
+ assignedTo: {
46
+ type: 'string',
47
+ description: 'Name of the person assigned to this task',
48
+ },
49
+ },
50
+ required: ['title'],
51
+ },
52
+ },
53
+ {
54
+ name: 'ponlo_tasks_update',
55
+ description: 'Update an existing task\'s details (title, description, deadline, etc.) without changing completion status.',
56
+ inputSchema: {
57
+ type: 'object',
58
+ properties: {
59
+ id: {
60
+ type: 'string',
61
+ description: 'Task ID (required)',
62
+ },
63
+ title: {
64
+ type: 'string',
65
+ description: 'New task title',
66
+ },
67
+ description: {
68
+ type: 'string',
69
+ description: 'New task description',
70
+ },
71
+ deadline: {
72
+ type: 'string',
73
+ description: 'New deadline in ISO 8601 format',
74
+ },
75
+ resetMode: {
76
+ type: 'string',
77
+ enum: ['once', 'daily', 'weekly', 'monthly', 'manual'],
78
+ description: 'New reset mode',
79
+ },
80
+ resetDay: {
81
+ type: 'number',
82
+ description: 'New reset day',
83
+ },
84
+ assignedTo: {
85
+ type: 'string',
86
+ description: 'New assignee name',
87
+ },
88
+ },
89
+ required: ['id'],
90
+ },
91
+ },
92
+ {
93
+ name: 'ponlo_tasks_complete',
94
+ description: 'Mark a task as completed. Tracks who completed it and when.',
95
+ inputSchema: {
96
+ type: 'object',
97
+ properties: {
98
+ id: {
99
+ type: 'string',
100
+ description: 'Task ID to mark as complete (required)',
101
+ },
102
+ },
103
+ required: ['id'],
104
+ },
105
+ },
106
+ {
107
+ name: 'ponlo_tasks_uncomplete',
108
+ description: 'Mark a completed task as incomplete (not done).',
109
+ inputSchema: {
110
+ type: 'object',
111
+ properties: {
112
+ id: {
113
+ type: 'string',
114
+ description: 'Task ID to mark as incomplete (required)',
115
+ },
116
+ },
117
+ required: ['id'],
118
+ },
119
+ },
120
+ {
121
+ name: 'ponlo_tasks_delete',
122
+ description: 'Permanently delete a task from Ponlo.ai.',
123
+ inputSchema: {
124
+ type: 'object',
125
+ properties: {
126
+ id: {
127
+ type: 'string',
128
+ description: 'Task ID to delete (required)',
129
+ },
130
+ },
131
+ required: ['id'],
132
+ },
133
+ },
134
+ {
135
+ name: 'ponlo_tasks_reorder',
136
+ description: 'Change the display order of tasks. Lower order numbers appear first.',
137
+ inputSchema: {
138
+ type: 'object',
139
+ properties: {
140
+ tasks: {
141
+ type: 'array',
142
+ description: 'Array of tasks with their new order',
143
+ items: {
144
+ type: 'object',
145
+ properties: {
146
+ id: {
147
+ type: 'string',
148
+ description: 'Task ID',
149
+ },
150
+ order: {
151
+ type: 'number',
152
+ description: 'New order number (0-based)',
153
+ },
154
+ },
155
+ required: ['id', 'order'],
156
+ },
157
+ },
158
+ },
159
+ required: ['tasks'],
160
+ },
161
+ },
162
+ ];
163
+ }
164
+ /**
165
+ * Handle task tool calls
166
+ */
167
+ export async function handleTaskToolCall(toolName, args, client) {
168
+ switch (toolName) {
169
+ case 'ponlo_tasks_list': {
170
+ const tasks = await client.listTasks();
171
+ const taskList = tasks.map((task) => {
172
+ const status = task.completed ? '✓' : '○';
173
+ const deadline = task.deadline ? ` (due: ${new Date(task.deadline).toLocaleDateString()})` : '';
174
+ const assignee = task.assignedTo ? ` [@${task.assignedTo}]` : '';
175
+ return `${status} ${task.title}${deadline}${assignee}`;
176
+ }).join('\n');
177
+ return {
178
+ content: [
179
+ {
180
+ type: 'text',
181
+ text: tasks.length === 0
182
+ ? 'No tasks found.'
183
+ : `Tasks (${tasks.length}):\n${taskList}`,
184
+ },
185
+ ],
186
+ };
187
+ }
188
+ case 'ponlo_tasks_create': {
189
+ const task = await client.createTask({
190
+ title: args.title,
191
+ description: args.description,
192
+ deadline: args.deadline,
193
+ resetMode: args.resetMode,
194
+ resetDay: args.resetDay,
195
+ assignedTo: args.assignedTo,
196
+ });
197
+ return {
198
+ content: [
199
+ {
200
+ type: 'text',
201
+ text: `Task created successfully: "${task.title}" (ID: ${task.id})`,
202
+ },
203
+ ],
204
+ };
205
+ }
206
+ case 'ponlo_tasks_update': {
207
+ const updateData = { id: args.id };
208
+ if (args.title !== undefined)
209
+ updateData.title = args.title;
210
+ if (args.description !== undefined)
211
+ updateData.description = args.description;
212
+ if (args.deadline !== undefined)
213
+ updateData.deadline = args.deadline;
214
+ if (args.resetMode !== undefined)
215
+ updateData.resetMode = args.resetMode;
216
+ if (args.resetDay !== undefined)
217
+ updateData.resetDay = args.resetDay;
218
+ if (args.assignedTo !== undefined)
219
+ updateData.assignedTo = args.assignedTo;
220
+ const task = await client.updateTask(updateData);
221
+ return {
222
+ content: [
223
+ {
224
+ type: 'text',
225
+ text: `Task updated successfully: "${task.title}"`,
226
+ },
227
+ ],
228
+ };
229
+ }
230
+ case 'ponlo_tasks_complete': {
231
+ const task = await client.updateTask({
232
+ id: args.id,
233
+ completed: true,
234
+ });
235
+ return {
236
+ content: [
237
+ {
238
+ type: 'text',
239
+ text: `Task marked as complete: "${task.title}"`,
240
+ },
241
+ ],
242
+ };
243
+ }
244
+ case 'ponlo_tasks_uncomplete': {
245
+ const task = await client.updateTask({
246
+ id: args.id,
247
+ completed: false,
248
+ });
249
+ return {
250
+ content: [
251
+ {
252
+ type: 'text',
253
+ text: `Task marked as incomplete: "${task.title}"`,
254
+ },
255
+ ],
256
+ };
257
+ }
258
+ case 'ponlo_tasks_delete': {
259
+ await client.deleteTask(args.id);
260
+ return {
261
+ content: [
262
+ {
263
+ type: 'text',
264
+ text: 'Task deleted successfully',
265
+ },
266
+ ],
267
+ };
268
+ }
269
+ case 'ponlo_tasks_reorder': {
270
+ await client.reorderTasks(args.tasks);
271
+ return {
272
+ content: [
273
+ {
274
+ type: 'text',
275
+ text: 'Tasks reordered successfully',
276
+ },
277
+ ],
278
+ };
279
+ }
280
+ default:
281
+ throw new Error(`Unknown task tool: ${toolName}`);
282
+ }
283
+ }
284
+ //# sourceMappingURL=tasks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tasks.js","sourceRoot":"","sources":["../../tools/tasks.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,58 @@
1
+ /**
2
+ * Type definitions for Ponlo.ai MCP Server
3
+ */
4
+ export interface Task {
5
+ id: string;
6
+ workspaceId: string;
7
+ title: string;
8
+ completed: boolean;
9
+ completedAt: string | null;
10
+ description: string | null;
11
+ deadline: string | null;
12
+ resetMode: 'once' | 'daily' | 'weekly' | 'monthly' | 'manual';
13
+ resetDay: number | null;
14
+ assignedTo: string | null;
15
+ order: number;
16
+ createdBy: string | null;
17
+ updatedBy: string | null;
18
+ completedBy: string | null;
19
+ createdAt: string;
20
+ updatedAt: string;
21
+ }
22
+ export interface CalendarEvent {
23
+ id: string;
24
+ workspaceId: string;
25
+ calendarId: string;
26
+ externalId: string;
27
+ title: string;
28
+ startTime: string;
29
+ endTime: string | null;
30
+ allDay: boolean;
31
+ location: string | null;
32
+ description: string | null;
33
+ createdBy: string | null;
34
+ updatedBy: string | null;
35
+ cachedAt: string;
36
+ }
37
+ export interface StickyNote {
38
+ id: string;
39
+ workspaceId: string;
40
+ content: string;
41
+ color: string;
42
+ createdBy: string | null;
43
+ createdAt: string;
44
+ }
45
+ export interface TasksResponse {
46
+ tasks: Task[];
47
+ }
48
+ export interface EventsResponse {
49
+ events: CalendarEvent[];
50
+ lastUpdated: string;
51
+ }
52
+ export interface NoteResponse {
53
+ note: StickyNote | null;
54
+ }
55
+ export interface ApiError {
56
+ error: string;
57
+ }
58
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,MAAM,WAAW,IAAI;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,SAAS,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC9D,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB;AAGD,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,MAAM,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAGD,MAAM,WAAW,UAAU;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;CACnB;AAGD,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,IAAI,EAAE,CAAC;CACf;AAED,MAAM,WAAW,cAAc;IAC7B,MAAM,EAAE,aAAa,EAAE,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,UAAU,GAAG,IAAI,CAAC;CACzB;AAED,MAAM,WAAW,QAAQ;IACvB,KAAK,EAAE,MAAM,CAAC;CACf"}
package/dist/types.js ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Type definitions for Ponlo.ai MCP Server
3
+ */
4
+ export {};
5
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../types.ts"],"names":[],"mappings":"AAAA;;GAEG"}
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "ponlo-ai",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for Ponlo.ai - Access your tasks, calendar, and notes from Claude",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "ponlo-ai": "dist/index.js"
8
+ },
9
+ "type": "module",
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "prepublishOnly": "npm run build"
13
+ },
14
+ "keywords": [
15
+ "mcp",
16
+ "ponlo",
17
+ "claude",
18
+ "task-management",
19
+ "calendar"
20
+ ],
21
+ "author": "Ponlo.ai",
22
+ "license": "MIT",
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.0.0"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^20.0.0",
28
+ "typescript": "^5.0.0"
29
+ },
30
+ "engines": {
31
+ "node": ">=18.0.0"
32
+ }
33
+ }