forked from kfastov/tgcli
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmcp-server.js
More file actions
2233 lines (2017 loc) · 63 KB
/
Copy pathmcp-server.js
File metadata and controls
2233 lines (2017 loc) · 63 KB
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
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import http from "http";
import fs from "fs";
import path from "path";
import { randomUUID } from "crypto";
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
import { isInitializeRequest } from "@modelcontextprotocol/sdk/types.js";
import { z } from "zod";
import { loadConfig, validateConfig } from "./core/config.js";
import { createServices } from "./core/services.js";
import { resolveStoreDir } from "./core/store.js";
const SERVICE_STATE_FILE = "service-state.json";
const storeDir = resolveStoreDir();
const { config, path: configPath } = loadConfig(storeDir);
const missingConfig = validateConfig(config ?? {});
if (missingConfig.length > 0) {
console.error(`[startup] Missing tgcli configuration at ${configPath}. Run "tgcli auth".`);
process.exit(1);
}
const mcpConfig = config?.mcp ?? {};
const mcpEnabled = Boolean(mcpConfig.enabled);
const resolvedHost = mcpConfig.host ?? process.env.MCP_HOST ?? process.env.FASTMCP_HOST ?? "127.0.0.1";
const resolvedPort = Number(mcpConfig.port ?? process.env.MCP_PORT ?? process.env.FASTMCP_PORT ?? "8080");
const HOST = resolvedHost;
const PORT = Number.isFinite(resolvedPort) && resolvedPort > 0 ? resolvedPort : 8080;
const { telegramClient, messageSyncService } = createServices({ storeDir, config });
let telegramReady = false;
let serviceState = null;
function readVersion() {
try {
const pkgPath = new URL("./package.json", import.meta.url);
const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8"));
return pkg.version || "0.0.0";
} catch (error) {
return "0.0.0";
}
}
function writeServiceState(nextState) {
if (!nextState) {
return;
}
try {
fs.mkdirSync(storeDir, { recursive: true });
fs.writeFileSync(
path.join(storeDir, SERVICE_STATE_FILE),
`${JSON.stringify(nextState, null, 2)}\n`,
"utf8",
);
} catch (error) {
console.error(`[startup] Failed to write service state: ${error?.message ?? error}`);
}
}
function updateServiceState(patch) {
if (!serviceState) {
return;
}
serviceState = {
...serviceState,
...patch,
updatedAt: new Date().toISOString(),
};
writeServiceState(serviceState);
}
async function initializeTelegram() {
if (telegramReady) return;
console.log("[startup] Initializing Telegram dialogs...");
const dialogsReady = await telegramClient.initializeDialogCache();
if (!dialogsReady) {
throw new Error("Failed to initialize Telegram dialog list");
}
const dialogCount = await messageSyncService.refreshChannelsFromDialogs();
console.log(`[startup] Seeded ${dialogCount} dialogs into archive registry.`);
messageSyncService.startRealtimeSync();
messageSyncService.resumePendingJobs();
telegramReady = true;
}
/**
* Represents an active MCP session – a transport plus its server instance.
*/
const sessions = new Map();
let shuttingDown = false;
function closeSessionRecord(record, context) {
if (!record || record.closing) {
return null;
}
record.closing = true;
if (record.sessionId) {
sessions.delete(record.sessionId);
}
if (record.transport?.close) {
return record.transport.close().catch((error) => {
console.error(`[server] error closing ${context}: ${error.message}`);
});
}
return null;
}
const listChannelsSchema = {
limit: z.number().int().positive().optional().describe("Maximum number of channels to return (default: 50)"),
};
const searchChannelsSchema = {
keywords: z
.string()
.min(1)
.describe("Keywords to search for in channel titles or usernames"),
limit: z.number().int().positive().optional().describe("Maximum number of results to return (default: 100)"),
};
const setChannelTagsSchema = {
channelId: z
.union([
z.number({ invalid_type_error: "channelId must be a number" }),
z.string({ invalid_type_error: "channelId must be a string" }).min(1),
])
.describe("Numeric channel ID or username"),
tags: z
.array(z.string().min(1))
.min(1)
.describe("List of tags to attach to the channel"),
source: z
.string()
.optional()
.describe("Tag source label (default: manual)"),
};
const listChannelTagsSchema = {
channelId: z
.union([
z.number({ invalid_type_error: "channelId must be a number" }),
z.string({ invalid_type_error: "channelId must be a string" }).min(1),
])
.describe("Numeric channel ID or username"),
source: z
.string()
.optional()
.describe("Optional tag source to filter by"),
};
const listTaggedChannelsSchema = {
tag: z
.string()
.min(1)
.describe("Tag label to look up"),
source: z
.string()
.optional()
.describe("Optional tag source to filter by"),
limit: z.number().int().positive().optional().describe("Maximum number of channels to return (default: 100)"),
};
const refreshChannelMetadataSchema = {
channelIds: z
.array(
z.union([
z.number({ invalid_type_error: "channelId must be a number" }),
z.string({ invalid_type_error: "channelId must be a string" }).min(1),
]),
)
.optional()
.describe("Optional list of channel IDs/usernames to refresh"),
limit: z.number().int().positive().optional().describe("Maximum number of channels to refresh (default: 20)"),
force: z
.boolean({ invalid_type_error: "force must be a boolean" })
.optional()
.describe("Refresh even if cached metadata is fresh"),
onlyMissing: z
.boolean({ invalid_type_error: "onlyMissing must be a boolean" })
.optional()
.describe("Refresh only channels without cached metadata"),
};
const getChannelMetadataSchema = {
channelId: z
.union([
z.number({ invalid_type_error: "channelId must be a number" }),
z.string({ invalid_type_error: "channelId must be a string" }).min(1),
])
.describe("Numeric channel ID or username"),
};
const autoTagChannelsSchema = {
channelIds: z
.array(
z.union([
z.number({ invalid_type_error: "channelId must be a number" }),
z.string({ invalid_type_error: "channelId must be a string" }).min(1),
]),
)
.optional()
.describe("Optional list of channel IDs/usernames to tag"),
limit: z.number().int().positive().optional().describe("Maximum number of channels to tag (default: 50)"),
source: z
.string()
.optional()
.describe("Tag source label (default: auto)"),
refreshMetadata: z
.boolean({ invalid_type_error: "refreshMetadata must be a boolean" })
.optional()
.describe("Refresh cached metadata before tagging (default true)"),
};
const scheduleMessageSyncSchema = {
channelId: z
.union([
z.number({ invalid_type_error: "channelId must be a number" }),
z.string({ invalid_type_error: "channelId must be a string" }).min(1),
])
.describe("Numeric channel ID or username"),
depth: z
.number({ invalid_type_error: "depth must be a number" })
.int()
.positive()
.max(50000)
.optional()
.describe("Maximum messages to retain per channel (default 1000)"),
minDate: z
.string({ invalid_type_error: "minDate must be a string" })
.min(1)
.optional()
.describe("Earliest ISO-8601 timestamp to backfill (optional)"),
};
const topicsListSchema = {
channelId: z
.union([
z.number({ invalid_type_error: "channelId must be a number" }),
z.string({ invalid_type_error: "channelId must be a string" }).min(1),
])
.describe("Numeric channel ID or username"),
limit: z.number().int().positive().optional().describe("Maximum number of topics to return (default: 100)"),
};
const topicsSearchSchema = {
channelId: z
.union([
z.number({ invalid_type_error: "channelId must be a number" }),
z.string({ invalid_type_error: "channelId must be a string" }).min(1),
])
.describe("Numeric channel ID or username"),
query: z
.string({ invalid_type_error: "query must be a string" })
.min(1)
.describe("Search query for forum topic titles"),
limit: z.number().int().positive().optional().describe("Maximum number of topics to return (default: 100)"),
};
const folderIdOrNameSchema = {
folder: z
.union([
z.number({ invalid_type_error: "folder must be a number" }),
z.string({ invalid_type_error: "folder must be a string" }).min(1),
])
.describe("Folder ID (numeric) or title (string)"),
};
const createFolderSchema = {
title: z.string().min(1).max(12).describe("Folder name (max 12 chars)"),
emoji: z.string().optional().describe("Emoji icon"),
contacts: z.boolean().optional().describe("Include contacts"),
nonContacts: z.boolean().optional().describe("Include non-contacts"),
groups: z.boolean().optional().describe("Include groups"),
broadcasts: z.boolean().optional().describe("Include channels/broadcasts"),
bots: z.boolean().optional().describe("Include bots"),
excludeMuted: z.boolean().optional().describe("Exclude muted chats"),
excludeRead: z.boolean().optional().describe("Exclude read chats"),
excludeArchived: z.boolean().optional().describe("Exclude archived chats"),
includePeers: z.array(z.union([z.number(), z.string()])).optional().describe("Chat IDs to include"),
excludePeers: z.array(z.union([z.number(), z.string()])).optional().describe("Chat IDs to exclude"),
pinnedPeers: z.array(z.union([z.number(), z.string()])).optional().describe("Chat IDs to pin"),
};
const editFolderSchema = {
folder: z
.union([
z.number({ invalid_type_error: "folder must be a number" }),
z.string({ invalid_type_error: "folder must be a string" }).min(1),
])
.describe("Folder ID (numeric) or title (string)"),
title: z.string().min(1).max(12).optional().describe("New folder name"),
emoji: z.string().optional().describe("Emoji icon"),
contacts: z.boolean().optional().describe("Include contacts"),
nonContacts: z.boolean().optional().describe("Include non-contacts"),
groups: z.boolean().optional().describe("Include groups"),
broadcasts: z.boolean().optional().describe("Include channels/broadcasts"),
bots: z.boolean().optional().describe("Include bots"),
excludeMuted: z.boolean().optional().describe("Exclude muted chats"),
excludeRead: z.boolean().optional().describe("Exclude read chats"),
excludeArchived: z.boolean().optional().describe("Exclude archived chats"),
includePeers: z.array(z.union([z.number(), z.string()])).optional().describe("Chat IDs to include"),
excludePeers: z.array(z.union([z.number(), z.string()])).optional().describe("Chat IDs to exclude"),
pinnedPeers: z.array(z.union([z.number(), z.string()])).optional().describe("Chat IDs to pin"),
};
const reorderFoldersSchema = {
ids: z.array(z.number().int()).min(1).describe("Folder IDs in desired order"),
};
const folderChatSchema = {
folder: z
.union([
z.number({ invalid_type_error: "folder must be a number" }),
z.string({ invalid_type_error: "folder must be a string" }).min(1),
])
.describe("Folder ID (numeric) or title (string)"),
chatId: z
.union([
z.number({ invalid_type_error: "chatId must be a number" }),
z.string({ invalid_type_error: "chatId must be a string" }).min(1),
])
.describe("Chat ID to add/remove"),
};
const joinChatlistSchema = {
link: z.string().min(1).describe("Shared folder invite link"),
};
const messageSourceSchema = z
.enum(["archive", "live", "both"])
.optional()
.describe("Message source (default: archive)");
const channelIdSchema = z.union([
z.number({ invalid_type_error: "channelId must be a number" }),
z.string({ invalid_type_error: "channelId must be a string" }).min(1),
]);
const userIdSchema = z.union([
z.number({ invalid_type_error: "userId must be a number" }),
z.string({ invalid_type_error: "userId must be a string" }).min(1),
]);
const messagesListSchema = {
channelId: channelIdSchema.optional().describe("Optional numeric channel ID or username"),
topicId: z
.number({ invalid_type_error: "topicId must be a number" })
.int()
.positive()
.optional()
.describe("Optional forum topic ID"),
source: messageSourceSchema,
fromDate: z
.string({ invalid_type_error: "fromDate must be a string" })
.min(1)
.optional()
.describe("Earliest ISO-8601 timestamp to include (optional)"),
toDate: z
.string({ invalid_type_error: "toDate must be a string" })
.min(1)
.optional()
.describe("Latest ISO-8601 timestamp to include (optional)"),
limit: z.number().int().positive().optional().describe("Maximum number of messages to return (default: 50)"),
};
const messagesGetSchema = {
channelId: channelIdSchema.describe("Numeric channel ID or username"),
messageId: z
.number({ invalid_type_error: "messageId must be a number" })
.int()
.positive()
.describe("Message ID"),
source: messageSourceSchema,
};
const messagesContextSchema = {
channelId: channelIdSchema.describe("Numeric channel ID or username"),
messageId: z
.number({ invalid_type_error: "messageId must be a number" })
.int()
.positive()
.describe("Message ID"),
before: z
.number({ invalid_type_error: "before must be a number" })
.int()
.min(0)
.optional()
.describe("Number of messages to include before the target (default: 20)"),
after: z
.number({ invalid_type_error: "after must be a number" })
.int()
.min(0)
.optional()
.describe("Number of messages to include after the target (default: 20)"),
source: messageSourceSchema,
};
const messagesSearchSchema = {
query: z.string().optional().describe("Optional full-text query (archive) or search text (live)"),
regex: z.string().optional().describe("Optional regex filter for message text"),
source: messageSourceSchema,
channelIds: z
.union([channelIdSchema, z.array(channelIdSchema).min(1)])
.optional()
.describe("Channel IDs or usernames to search (optional)"),
channelId: channelIdSchema.optional().describe("Alias for channelIds"),
tags: z.array(z.string().min(1)).optional().describe("Channel tags to filter by (optional)"),
tag: z.string().optional().describe("Alias for tags"),
topicId: z
.number({ invalid_type_error: "topicId must be a number" })
.int()
.positive()
.optional()
.describe("Optional forum topic ID"),
fromDate: z
.string({ invalid_type_error: "fromDate must be a string" })
.min(1)
.optional()
.describe("Earliest ISO-8601 timestamp to include (optional)"),
toDate: z
.string({ invalid_type_error: "toDate must be a string" })
.min(1)
.optional()
.describe("Latest ISO-8601 timestamp to include (optional)"),
limit: z.number().int().positive().optional().describe("Maximum number of matches to return (default: 100)"),
caseInsensitive: z
.boolean({ invalid_type_error: "caseInsensitive must be a boolean" })
.optional()
.describe("Whether regex matching should be case-insensitive (default: true)"),
};
const messagesSendSchema = {
channelId: channelIdSchema.describe("Numeric channel ID or username"),
text: z
.string({ invalid_type_error: "text must be a string" })
.min(1)
.describe("Message text to send"),
topicId: z
.number({ invalid_type_error: "topicId must be a number" })
.int()
.positive()
.optional()
.describe("Optional forum topic ID to send into"),
replyToMessageId: z
.number({ invalid_type_error: "replyToMessageId must be a number" })
.int()
.positive()
.optional()
.describe("Optional message ID to reply to"),
noPreview: z
.boolean({ invalid_type_error: "noPreview must be a boolean" })
.optional()
.describe("Disable link preview in the message"),
silent: z.boolean().optional().describe("Send without notification sound"),
noForwards: z.boolean().optional().describe("Protect message from forwarding/saving"),
schedule: z.string().datetime({ offset: true }).optional().describe("ISO 8601 datetime for scheduled delivery"),
};
const messagesSendFileSchema = {
channelId: channelIdSchema.describe("Numeric channel ID or username"),
filePath: z
.string({ invalid_type_error: "filePath must be a string" })
.min(1)
.describe("Path to a local file to upload"),
caption: z.string().optional().describe("Optional caption for the file"),
filename: z.string().optional().describe("Override file name shown in Telegram"),
topicId: z
.number({ invalid_type_error: "topicId must be a number" })
.int()
.positive()
.optional()
.describe("Optional forum topic ID to send into"),
replyToMessageId: z
.number({ invalid_type_error: "replyToMessageId must be a number" })
.int()
.positive()
.optional()
.describe("Optional message ID to reply to"),
silent: z.boolean().optional().describe("Send without notification sound"),
noForwards: z.boolean().optional().describe("Protect message from forwarding/saving"),
captionAbove: z.boolean().optional().describe("Show caption above media"),
spoiler: z.boolean().optional().describe("Blur media until tapped"),
schedule: z.string().datetime({ offset: true }).optional().describe("ISO 8601 datetime for scheduled delivery"),
forceDocument: z.boolean().optional().describe("Send as uncompressed document"),
};
const mediaDownloadSchema = {
channelId: channelIdSchema.describe("Numeric channel ID or username"),
messageId: z
.number({ invalid_type_error: "messageId must be a number" })
.int()
.positive()
.describe("Message ID containing media"),
outputPath: z
.string()
.min(1)
.optional()
.describe("Optional file path or directory for the download"),
};
const contactsSearchSchema = {
query: z
.string({ invalid_type_error: "query must be a string" })
.min(1)
.describe("Search query for contacts"),
limit: z.number().int().positive().optional().describe("Maximum number of contacts to return (default: 50)"),
};
const contactsGetSchema = {
userId: userIdSchema.describe("User ID or username"),
};
const contactsAliasSetSchema = {
userId: userIdSchema.describe("User ID or username"),
alias: z
.string({ invalid_type_error: "alias must be a string" })
.min(1)
.describe("Alias for the contact"),
};
const contactsAliasRemoveSchema = {
userId: userIdSchema.describe("User ID or username"),
};
const contactsTagsAddSchema = {
userId: userIdSchema.describe("User ID or username"),
tags: z.array(z.string().min(1)).min(1).describe("Tags to add"),
};
const contactsTagsRemoveSchema = {
userId: userIdSchema.describe("User ID or username"),
tags: z.array(z.string().min(1)).min(1).describe("Tags to remove"),
};
const contactsNotesSetSchema = {
userId: userIdSchema.describe("User ID or username"),
notes: z
.string({ invalid_type_error: "notes must be a string" })
.describe("Notes to attach to the contact"),
};
const groupsListSchema = {
query: z.string().optional().describe("Optional search query for group titles"),
limit: z.number().int().positive().optional().describe("Maximum number of groups to return (default: 100)"),
};
const groupsInfoSchema = {
channelId: channelIdSchema.describe("Group ID or username"),
};
const groupsRenameSchema = {
channelId: channelIdSchema.describe("Group ID or username"),
name: z
.string({ invalid_type_error: "name must be a string" })
.min(1)
.describe("New group title"),
};
const groupsMembersAddSchema = {
channelId: channelIdSchema.describe("Group ID or username"),
userIds: z
.array(userIdSchema)
.min(1)
.describe("User IDs or usernames to add"),
};
const groupsMembersRemoveSchema = {
channelId: channelIdSchema.describe("Group ID or username"),
userIds: z
.array(userIdSchema)
.min(1)
.describe("User IDs or usernames to remove"),
};
const groupsInviteLinkGetSchema = {
channelId: channelIdSchema.describe("Group ID or username"),
};
const groupsInviteLinkRevokeSchema = {
channelId: channelIdSchema.describe("Group ID or username"),
};
const groupsJoinSchema = {
invite: z
.string({ invalid_type_error: "invite must be a string" })
.min(1)
.describe("Invite link or code"),
};
const groupsLeaveSchema = {
channelId: channelIdSchema.describe("Group ID or username"),
};
function resolveSource(source) {
const resolved = source ? String(source).toLowerCase() : "archive";
if (!["archive", "live", "both"].includes(resolved)) {
throw new Error(`Invalid source: ${source}`);
}
return resolved;
}
function resolveChannelIds(channelIds, channelId) {
const resolved = [];
if (Array.isArray(channelIds)) {
resolved.push(...channelIds);
} else if (channelIds) {
resolved.push(channelIds);
}
if (channelId) {
resolved.push(channelId);
}
const filtered = resolved.filter((id) => id !== null && id !== undefined && String(id).trim() !== "");
return filtered.length ? filtered : null;
}
function parseDateMs(value, label) {
if (!value) return null;
const ts = Date.parse(value);
if (Number.isNaN(ts)) {
throw new Error(`${label} must be a valid ISO-8601 string`);
}
return ts;
}
function filterLiveMessagesByDate(messages, fromDate, toDate) {
const fromMs = parseDateMs(fromDate, "fromDate");
const toMs = parseDateMs(toDate, "toDate");
if (!fromMs && !toMs) {
return messages;
}
return messages.filter((message) => {
const ts = typeof message.date === "number" ? message.date * 1000 : null;
if (!ts) {
return false;
}
if (fromMs && ts < fromMs) {
return false;
}
if (toMs && ts > toMs) {
return false;
}
return true;
});
}
function formatLiveMessage(message, context) {
const dateIso = message.date ? new Date(message.date * 1000).toISOString() : null;
return {
channelId: context.channelId ?? message.peer_id ?? null,
peerTitle: context.peerTitle ?? null,
username: context.username ?? null,
messageId: message.id,
date: dateIso,
fromId: message.from_id ?? null,
fromUsername: message.from_username ?? null,
fromDisplayName: message.from_display_name ?? null,
fromPeerType: message.from_peer_type ?? null,
fromIsBot: typeof message.from_is_bot === "boolean" ? message.from_is_bot : null,
text: message.text ?? message.message ?? "",
media: message.media ?? null,
topicId: message.topic_id ?? null,
};
}
function formatInviteLink(link) {
if (!link) {
return null;
}
return {
link: link.link ?? null,
isPrimary: typeof link.isPrimary === "boolean" ? link.isPrimary : null,
isRevoked: typeof link.isRevoked === "boolean" ? link.isRevoked : null,
createdAt: link.date ? link.date.toISOString() : null,
startDate: link.startDate ? link.startDate.toISOString() : null,
endDate: link.endDate ? link.endDate.toISOString() : null,
usageLimit: typeof link.usageLimit === "number" ? link.usageLimit : null,
usage: typeof link.usage === "number" ? link.usage : null,
approvalNeeded: typeof link.approvalNeeded === "boolean" ? link.approvalNeeded : null,
pendingApprovals: typeof link.pendingApprovals === "number" ? link.pendingApprovals : null,
};
}
function messageDateMs(message) {
const ts = Date.parse(message.date ?? "");
return Number.isNaN(ts) ? 0 : ts;
}
function mergeMessageSets(sets, limit) {
const map = new Map();
for (const list of sets) {
for (const message of list) {
const channelId = message.channelId ?? "";
const messageId = message.messageId ?? message.id;
const key = `${String(channelId)}:${String(messageId)}`;
if (!map.has(key) || message.source === "live") {
map.set(key, message);
}
}
}
const merged = Array.from(map.values());
merged.sort((a, b) => messageDateMs(b) - messageDateMs(a));
return limit && limit > 0 ? merged.slice(0, limit) : merged;
}
function createServerInstance() {
const server = new McpServer({
name: "example-mcp-server",
version: "1.0.0",
});
server.tool(
"listChannels",
"Lists available Telegram dialogs for the authenticated account.",
listChannelsSchema,
async ({ limit }) => {
await telegramClient.ensureLogin();
const dialogs = await telegramClient.listDialogs(limit ?? 50);
return {
content: [
{
type: "text",
text: JSON.stringify(dialogs, null, 2),
},
],
};
},
);
server.tool(
"searchChannels",
"Searches dialogs by title or username.",
searchChannelsSchema,
async ({ keywords, limit }) => {
await telegramClient.ensureLogin();
const matches = await telegramClient.searchDialogs(keywords, limit ?? 100);
return {
content: [
{
type: "text",
text: JSON.stringify(matches, null, 2),
},
],
};
},
);
server.tool(
"listActiveChannels",
"Lists dialogs tracked in the local archive registry.",
{},
async () => {
const channels = messageSyncService.listActiveChannels();
return {
content: [
{
type: "text",
text: JSON.stringify(channels, null, 2),
},
],
};
},
);
server.tool(
"setChannelTags",
"Assign tags to a channel for later cross-channel search.",
setChannelTagsSchema,
async ({ channelId, tags, source }) => {
const finalTags = messageSyncService.setChannelTags(channelId, tags, { source });
return {
content: [
{
type: "text",
text: JSON.stringify({ channelId, tags: finalTags }, null, 2),
},
],
};
},
);
server.tool(
"listChannelTags",
"List tags attached to a channel.",
listChannelTagsSchema,
async ({ channelId, source }) => {
const tags = messageSyncService.listChannelTags(channelId, { source });
return {
content: [
{
type: "text",
text: JSON.stringify(tags, null, 2),
},
],
};
},
);
server.tool(
"listTaggedChannels",
"List channels that carry a specific tag.",
listTaggedChannelsSchema,
async ({ tag, source, limit }) => {
const channels = messageSyncService.listTaggedChannels(tag, { source, limit });
return {
content: [
{
type: "text",
text: JSON.stringify(channels, null, 2),
},
],
};
},
);
server.tool(
"refreshChannelMetadata",
"Fetches and caches extended metadata for channels.",
refreshChannelMetadataSchema,
async ({ channelIds, limit, force, onlyMissing }) => {
await telegramClient.ensureLogin();
const results = await messageSyncService.refreshChannelMetadata({
channelIds,
limit,
force,
onlyMissing,
});
return {
content: [
{
type: "text",
text: JSON.stringify(results, null, 2),
},
],
};
},
);
server.tool(
"getChannelMetadata",
"Returns cached metadata for a channel.",
getChannelMetadataSchema,
async ({ channelId }) => {
const metadata = messageSyncService.getChannelMetadata(channelId);
return {
content: [
{
type: "text",
text: JSON.stringify(metadata, null, 2),
},
],
};
},
);
server.tool(
"autoTagChannels",
"Auto-tags channels based on title, username, and cached metadata.",
autoTagChannelsSchema,
async ({ channelIds, limit, source, refreshMetadata }) => {
await telegramClient.ensureLogin();
const results = await messageSyncService.autoTagChannels({
channelIds,
limit,
source,
refreshMetadata,
});
return {
content: [
{
type: "text",
text: JSON.stringify(results, null, 2),
},
],
};
},
);
server.tool(
"topicsList",
"Lists forum topics for a supergroup.",
topicsListSchema,
async ({ channelId, limit }) => {
await telegramClient.ensureLogin();
const topics = await telegramClient.listForumTopics(channelId, { limit: limit ?? 100 });
messageSyncService.upsertTopics(channelId, topics);
const formatted = topics.map((topic) => {
let lastMessage = null;
try {
const msg = topic.lastMessage;
lastMessage = {
id: msg.id,
date: msg.date ? msg.date.toISOString() : null,
text: msg.text ?? msg.message ?? "",
};
} catch (error) {
lastMessage = null;
}
return {
id: topic.id,
title: topic.title,
date: topic.date ? topic.date.toISOString() : null,
isClosed: topic.isClosed,
isPinned: topic.isPinned,
unreadCount: topic.unreadCount,
lastMessage,
};
});
return {
content: [
{
type: "text",
text: JSON.stringify(
{
total: topics.total ?? formatted.length,
returned: formatted.length,
topics: formatted,
},
null,
2,
),
},
],
};
},
);
server.tool(
"topicsSearch",
"Searches forum topics by title.",
topicsSearchSchema,
async ({ channelId, query, limit }) => {
await telegramClient.ensureLogin();
const topics = await telegramClient.listForumTopics(channelId, { query, limit: limit ?? 100 });
messageSyncService.upsertTopics(channelId, topics);
const formatted = topics.map((topic) => ({
id: topic.id,
title: topic.title,
date: topic.date ? topic.date.toISOString() : null,
isClosed: topic.isClosed,
isPinned: topic.isPinned,
unreadCount: topic.unreadCount,
}));
return {
content: [
{
type: "text",
text: JSON.stringify(
{
total: topics.total ?? formatted.length,
returned: formatted.length,
topics: formatted,
},
null,
2,
),
},
],
};
},
);
server.tool(
"messagesList",
"Lists messages from the archive or live Telegram API.",
messagesListSchema,
async ({ channelId, topicId, source, fromDate, toDate, limit }) => {
const resolvedSource = resolveSource(source);
const finalLimit = limit ?? 50;
const sets = [];
if (resolvedSource === "archive" || resolvedSource === "both") {
const archived = messageSyncService.listArchivedMessages({
channelIds: channelId ? [channelId] : null,
topicId,
fromDate,
toDate,
limit: finalLimit,
});
sets.push(archived.map((message) => ({ ...message, source: "archive" })));
}
if (resolvedSource === "live" || resolvedSource === "both") {
if (!channelId) {
throw new Error("channelId is required for live source.");