1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
|
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
import { CallToolRequestSchema, ListToolsRequestSchema } from '@modelcontextprotocol/sdk/types.js';
import { neon } from '@neondatabase/serverless';
import jwt from 'jsonwebtoken';
import fs from 'fs';
import path from 'path';
const sql = neon(process.env.DATABASE_URL!);
const TOKEN_FILE = '.auth-token';
// 令牌管理函数
function getStoredToken(): string | null {
try {
if (fs.existsSync(TOKEN_FILE)) {
return fs.readFileSync(TOKEN_FILE, 'utf8').trim();
}
} catch (error) {
console.error('Error reading token file:', error);
}
return null;
}
function storeToken(token: string): void {
try {
fs.writeFileSync(TOKEN_FILE, token);
} catch (error) {
console.error('Error storing token:', error);
}
}
function decodeJWT(token: string): any {
try {
return jwt.decode(token);
} catch (error) {
console.error('Error decoding JWT:', error);
return null;
}
}
// 计费状态检查
async function getKindeBillingStatus(userId: string, accessToken: string): Promise<{ plan: string; features: any; canCreate: boolean; reason?: string }> {
try {
const decoded = jwt.decode(accessToken) as any;
const subscription = await sql`SELECT * FROM users WHERE user_id = ${userId}`;
if (subscription.length === 0) {
await sql`
INSERT INTO users (user_id, name, email, subscription_status, plan, free_todos_used)
VALUES (${userId}, ${decoded.given_name || decoded.name || 'User'}, ${decoded.email || 'user@example.com'}, 'free', 'free', 0)
`;
}
const freeTodosUsed = subscription.length > 0 ? subscription[0].free_todos_used : 0;
if (freeTodosUsed < 1) {
return {
plan: 'free',
features: { maxTodos: 1, used: freeTodosUsed },
canCreate: true,
reason: `Free tier - ${1 - freeTodosUsed} todo remaining`
};
}
return {
plan: 'free',
features: { maxTodos: 1, used: freeTodosUsed },
canCreate: false,
reason: 'You have used your free todo. Please upgrade your plan.'
};
} catch (error) {
console.error('Error checking Kinde billing:', error);
return {
plan: 'free',
features: { maxTodos: 1 },
canCreate: false,
reason: 'Error checking billing status'
};
}
}
async function canCreateTodo(userId: string, accessToken: string): Promise<boolean> {
const billingStatus = await getKindeBillingStatus(userId, accessToken);
return billingStatus.canCreate;
}
// 初始化MCP服务器
const server = new Server(
{
name: 'todo-mcp-server',
version: '1.0.0',
},
{
capabilities: {
tools: {},
},
}
);
// 注册工具
server.setRequestHandler(ListToolsRequestSchema, async () => {
return {
tools: [
{
name: 'login',
description: 'Get authentication URL for Kinde login',
inputSchema: {
type: 'object',
properties: {},
},
},
{
name: 'save_token',
description: 'Save authentication token for future requests',
inputSchema: {
type: 'object',
properties: {
token: {
type: 'string',
description: 'JWT token from Kinde authentication',
},
},
required: ['token'],
},
},
{
name: 'list_todos',
description: 'List all todos for the authenticated user',
inputSchema: {
type: 'object',
properties: {},
},
},
{
name: 'create_todo',
description: 'Create a new todo item',
inputSchema: {
type: 'object',
properties: {
title: {
type: 'string',
description: 'Title of the todo',
},
description: {
type: 'string',
description: 'Description of the todo',
},
completed: {
type: 'boolean',
description: 'Whether the todo is completed',
},
},
required: ['title'],
},
},
{
name: 'update_todo',
description: 'Update an existing todo item',
inputSchema: {
type: 'object',
properties: {
todoId: {
type: 'number',
description: 'ID of the todo to update',
},
title: {
type: 'string',
description: 'New title of the todo',
},
description: {
type: 'string',
description: 'New description of the todo',
},
completed: {
type: 'boolean',
description: 'New completion status',
},
},
required: ['todoId'],
},
},
{
name: 'delete_todo',
description: 'Delete a todo item',
inputSchema: {
type: 'object',
properties: {
todoId: {
type: 'number',
description: 'ID of the todo to delete',
},
},
required: ['todoId'],
},
},
{
name: 'refresh_billing_status',
description: 'Refresh and check current billing status',
inputSchema: {
type: 'object',
properties: {},
},
},
{
name: 'logout',
description: 'Clear authentication token and logout',
inputSchema: {
type: 'object',
properties: {},
},
},
],
};
});
// 工具处理器
server.setRequestHandler(CallToolRequestSchema, async (request) => {
const { name, arguments: args } = request.params;
switch (name) {
case 'login': {
return {
content: [
{
type: 'text',
text: `🔐 **Authentication Required**
To use this MCP server, you need to authenticate with Kinde:
1. **Open your browser** and go to: http://localhost:3000
2. **Click "Login with Kinde"** to authenticate
3. **Copy your ID Token** from the page
4. **Use the save_token tool** to store it
After authentication, you can use commands like:
- \`list todos\` - List your todos
- \`create todo\` - Create a new todo
- \`refresh billing status\` - Check your plan status`,
},
],
};
}
case 'save_token': {
const { token } = args as { token: string };
storeToken(token);
return {
content: [
{
type: 'text',
text: '✅ Token saved successfully! You can now use commands like "list todos" and "create todo" without providing the token each time.',
},
],
};
}
case 'list_todos': {
const token = getStoredToken();
if (!token) {
return {
content: [
{
type: 'text',
text: '❌ No authentication token found. Please login first.',
},
],
};
}
const decoded = decodeJWT(token);
if (!decoded || !decoded.sub) {
return {
content: [
{
type: 'text',
text: '❌ Invalid token. Please login again.',
},
],
};
}
const todos = await sql`
SELECT * FROM todos
WHERE user_id = ${decoded.sub}
ORDER BY created_at DESC
`;
if (todos.length === 0) {
return {
content: [
{
type: 'text',
text: '📝 No todos found. Create your first todo using "create todo"!',
},
],
};
}
const todosList = todos.map((todo: any) =>
`**${todo.id}.** ${todo.title}${todo.description ? ` - ${todo.description}` : ''} ${todo.completed ? '✅' : '⏳'}`
).join('\n');
return {
content: [
{
type: 'text',
text: `📝 **Your Todos (${todos.length}):**\n\n${todosList}`,
},
],
};
}
case 'create_todo': {
const token = getStoredToken();
if (!token) {
return {
content: [
{
type: 'text',
text: '❌ No authentication token found. Please login first.',
},
],
};
}
const decoded = decodeJWT(token);
if (!decoded || !decoded.sub) {
return {
content: [
{
type: 'text',
text: '❌ Invalid token. Please login again.',
},
],
};
}
const { title, description, completed } = args as {
title: string;
description?: string;
completed?: boolean;
};
// 检查计费状态
const canCreate = await canCreateTodo(decoded.sub, token);
if (!canCreate) {
const billingStatus = await getKindeBillingStatus(decoded.sub, token);
return {
content: [
{
type: 'text',
text: `🚫 **Cannot create todo**\n\n${billingStatus.reason}`,
},
],
};
}
const result = await sql`
INSERT INTO todos (user_id, title, description, completed)
VALUES (${decoded.sub}, ${title}, ${description || null}, ${completed || false})
RETURNING *
`;
// 更新免费待办事项使用计数
await sql`
UPDATE users
SET free_todos_used = free_todos_used + 1
WHERE user_id = ${decoded.sub}
`;
return {
content: [
{
type: 'text',
text: JSON.stringify({
success: true,
todoId: result[0].id,
message: 'Todo created successfully',
title: result[0].title,
description: result[0].description,
completed: result[0].completed
}, null, 2),
},
],
};
}
case 'update_todo': {
const token = getStoredToken();
if (!token) {
return {
content: [
{
type: 'text',
text: '❌ No authentication token found. Please login first.',
},
],
};
}
const decoded = decodeJWT(token);
if (!decoded || !decoded.sub) {
return {
content: [
{
type: 'text',
text: '❌ Invalid token. Please login again.',
},
],
};
}
const { todoId, title, description, completed } = args as {
todoId: number;
title?: string;
description?: string;
completed?: boolean;
};
const result = await sql`
UPDATE todos
SET
title = COALESCE(${title || null}, title),
description = COALESCE(${description || null}, description),
completed = COALESCE(${completed !== undefined ? completed : null}, completed),
updated_at = CURRENT_TIMESTAMP
WHERE id = ${todoId} AND user_id = ${decoded.sub}
RETURNING *
`;
if (result.length === 0) {
return {
content: [
{
type: 'text',
text: '❌ Todo not found or you do not have permission to update it.',
},
],
};
}
return {
content: [
{
type: 'text',
text: JSON.stringify({
success: true,
message: 'Todo updated successfully',
todo: result[0]
}, null, 2),
},
],
};
}
case 'delete_todo': {
const token = getStoredToken();
if (!token) {
return {
content: [
{
type: 'text',
text: '❌ No authentication token found. Please login first.',
},
],
};
}
const decoded = decodeJWT(token);
if (!decoded || !decoded.sub) {
return {
content: [
{
type: 'text',
text: '❌ Invalid token. Please login again.',
},
],
];
}
const { todoId } = args as { todoId: number };
const result = await sql`
DELETE FROM todos
WHERE id = ${todoId} AND user_id = ${decoded.sub}
RETURNING *
`;
if (result.length === 0) {
return {
content: [
{
type: 'text',
text: '❌ Todo not found or you do not have permission to delete it.',
},
],
};
}
return {
content: [
{
type: 'text',
text: JSON.stringify({
success: true,
message: 'Todo deleted successfully',
deletedTodo: result[0]
}, null, 2),
},
],
};
}
case 'refresh_billing_status': {
const token = getStoredToken();
if (!token) {
return {
content: [
{
type: 'text',
text: '❌ No authentication token found. Please login first.',
},
],
};
}
const decoded = decodeJWT(token);
if (!decoded || !decoded.sub) {
return {
content: [
{
type: 'text',
text: '❌ Invalid token. Please login again.',
},
],
};
}
const billingStatus = await getKindeBillingStatus(decoded.sub, token);
return {
content: [
{
type: 'text',
text: JSON.stringify({
success: true,
message: 'Billing status refreshed successfully!',
kindeBilling: {
plan: billingStatus.plan,
features: billingStatus.features,
canCreate: billingStatus.canCreate,
reason: billingStatus.reason,
lastChecked: new Date().toISOString()
}
}, null, 2),
},
],
};
}
case 'logout': {
try {
if (fs.existsSync(TOKEN_FILE)) {
fs.unlinkSync(TOKEN_FILE);
}
return {
content: [
{
type: 'text',
text: '✅ Logged out successfully. Authentication token cleared.',
},
],
};
} catch (error) {
return {
content: [
{
type: 'text',
},
],
};
}
}
default:
throw new Error(`Unknown tool: ${name}`);
}
});
// 启动服务器
async function main() {
const transport = new StdioServerTransport();
await server.connect(transport);
console.error('Todo MCP server running on stdio');
}
main().catch((error) => {
console.error('Fatal error in main():', error);
process.exit(1);
});
|