0nmcp 3.0.1 → 3.1.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.
- package/catalog.js +187 -15
- package/lib/stats.json +1 -1
- package/package.json +2 -2
package/catalog.js
CHANGED
|
@@ -2507,25 +2507,197 @@ export const SERVICE_CATALOG = {
|
|
|
2507
2507
|
telegram: {
|
|
2508
2508
|
name: "Telegram",
|
|
2509
2509
|
type: "messaging",
|
|
2510
|
-
description: "Messaging platform —
|
|
2510
|
+
description: "Messaging platform — bots, channels, groups, payments, inline mode, stickers, forum topics, gifts, verification",
|
|
2511
2511
|
baseUrl: "https://api.telegram.org/bot{botToken}",
|
|
2512
2512
|
authType: "api_key",
|
|
2513
2513
|
credentialKeys: ["botToken"],
|
|
2514
2514
|
capabilities: [
|
|
2515
|
-
{ name: "send_messages", actions: ["send_text", "send_photo", "send_document"], description: "Send
|
|
2516
|
-
{ name: "
|
|
2517
|
-
{ name: "
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2515
|
+
{ name: "send_messages", actions: ["send_text", "send_photo", "send_video", "send_audio", "send_document", "send_animation", "send_voice", "send_video_note", "send_location", "send_venue", "send_contact", "send_poll", "send_dice", "send_sticker", "send_media_group", "send_paid_media"], description: "Send any type of message — text, media, locations, contacts, polls, dice" },
|
|
2516
|
+
{ name: "edit_messages", actions: ["edit_text", "edit_caption", "edit_media", "edit_markup", "edit_live_location", "stop_live_location", "delete", "bulk_delete"], description: "Edit, update, and delete messages" },
|
|
2517
|
+
{ name: "manage_chats", actions: ["get_chat", "get_admins", "get_member_count", "get_member", "set_title", "set_description", "set_photo", "delete_photo", "set_permissions", "leave", "set_background"], description: "Full chat management — info, settings, permissions, appearance" },
|
|
2518
|
+
{ name: "manage_members", actions: ["ban", "unban", "restrict", "promote", "approve_join", "decline_join", "ban_channel", "unban_channel", "set_admin_title"], description: "Member moderation — ban, kick, restrict, promote, join requests" },
|
|
2519
|
+
{ name: "manage_invites", actions: ["export_link", "create_link", "edit_link", "revoke_link", "create_subscription_link", "edit_subscription_link"], description: "Invite link management including subscription-based invites" },
|
|
2520
|
+
{ name: "manage_updates", actions: ["get_updates", "set_webhook", "delete_webhook", "get_webhook_info"], description: "Receive updates via polling or webhook" },
|
|
2521
|
+
{ name: "manage_forum_topics", actions: ["create", "edit", "close", "reopen", "delete", "unpin_all", "manage_general"], description: "Forum topic management for supergroups" },
|
|
2522
|
+
{ name: "manage_bot", actions: ["set_commands", "get_commands", "delete_commands", "set_name", "set_description", "set_short_description", "set_menu_button", "set_admin_rights"], description: "Configure bot profile, commands, menu, and permissions" },
|
|
2523
|
+
{ name: "manage_stickers", actions: ["send", "get_set", "create_set", "add_to_set", "delete_from_set", "replace", "set_thumbnail", "set_title", "delete_set", "upload_file", "set_emoji", "set_keywords", "set_mask_position"], description: "Full sticker set management — create, edit, delete, upload" },
|
|
2524
|
+
{ name: "inline_mode", actions: ["answer_inline", "answer_webapp", "save_prepared"], description: "Inline query responses and web app integration" },
|
|
2525
|
+
{ name: "payments", actions: ["send_invoice", "create_invoice_link", "answer_shipping", "answer_pre_checkout", "get_star_transactions", "refund_star_payment", "edit_subscription"], description: "Telegram Stars and provider-based payments — invoices, subscriptions, refunds" },
|
|
2526
|
+
{ name: "games", actions: ["send_game", "set_score", "get_high_scores"], description: "Game integration — send, score, leaderboards" },
|
|
2527
|
+
{ name: "manage_reactions", actions: ["set_reaction"], description: "Set emoji reactions on messages" },
|
|
2528
|
+
{ name: "manage_pins", actions: ["pin", "unpin", "unpin_all"], description: "Pin and unpin messages" },
|
|
2529
|
+
{ name: "manage_gifts", actions: ["send_gift", "get_gifts", "gift_premium"], description: "Send gifts and Telegram Premium subscriptions" },
|
|
2530
|
+
{ name: "verification", actions: ["verify_user", "verify_chat", "remove_user_verification", "remove_chat_verification"], description: "Verify users and chats on behalf of organization" },
|
|
2531
|
+
{ name: "manage_files", actions: ["get_file"], description: "Download files from Telegram servers" },
|
|
2532
|
+
],
|
|
2533
|
+
endpoints: {
|
|
2534
|
+
// ── Updates ──────────────────────────────────────────
|
|
2535
|
+
get_updates: { method: "POST", path: "/getUpdates", body: { offset: 0, limit: 100, timeout: 30 } },
|
|
2536
|
+
set_webhook: { method: "POST", path: "/setWebhook", body: { url: "", max_connections: 40, allowed_updates: [] } },
|
|
2537
|
+
delete_webhook: { method: "POST", path: "/deleteWebhook", body: { drop_pending_updates: false } },
|
|
2538
|
+
get_webhook_info: { method: "GET", path: "/getWebhookInfo" },
|
|
2539
|
+
|
|
2540
|
+
// ── Bot Info ─────────────────────────────────────────
|
|
2541
|
+
get_me: { method: "GET", path: "/getMe" },
|
|
2542
|
+
log_out: { method: "POST", path: "/logOut" },
|
|
2543
|
+
close: { method: "POST", path: "/close" },
|
|
2544
|
+
get_user_profile_photos: { method: "POST", path: "/getUserProfilePhotos", body: { user_id: 0, offset: 0, limit: 100 } },
|
|
2545
|
+
get_user_chat_boosts: { method: "POST", path: "/getUserChatBoosts", body: { chat_id: "", user_id: 0 } },
|
|
2546
|
+
get_business_connection: { method: "POST", path: "/getBusinessConnection", body: { business_connection_id: "" } },
|
|
2547
|
+
|
|
2548
|
+
// ── Sending Messages ─────────────────────────────────
|
|
2549
|
+
send_message: { method: "POST", path: "/sendMessage", body: { chat_id: "", text: "", parse_mode: "HTML" } },
|
|
2550
|
+
forward_message: { method: "POST", path: "/forwardMessage", body: { chat_id: "", from_chat_id: "", message_id: 0 } },
|
|
2551
|
+
forward_messages: { method: "POST", path: "/forwardMessages", body: { chat_id: "", from_chat_id: "", message_ids: [] } },
|
|
2552
|
+
copy_message: { method: "POST", path: "/copyMessage", body: { chat_id: "", from_chat_id: "", message_id: 0 } },
|
|
2553
|
+
copy_messages: { method: "POST", path: "/copyMessages", body: { chat_id: "", from_chat_id: "", message_ids: [] } },
|
|
2554
|
+
send_photo: { method: "POST", path: "/sendPhoto", body: { chat_id: "", photo: "", caption: "" } },
|
|
2555
|
+
send_audio: { method: "POST", path: "/sendAudio", body: { chat_id: "", audio: "", caption: "" } },
|
|
2556
|
+
send_document: { method: "POST", path: "/sendDocument", body: { chat_id: "", document: "", caption: "" } },
|
|
2557
|
+
send_video: { method: "POST", path: "/sendVideo", body: { chat_id: "", video: "", caption: "" } },
|
|
2558
|
+
send_animation: { method: "POST", path: "/sendAnimation", body: { chat_id: "", animation: "", caption: "" } },
|
|
2559
|
+
send_voice: { method: "POST", path: "/sendVoice", body: { chat_id: "", voice: "", caption: "" } },
|
|
2560
|
+
send_video_note: { method: "POST", path: "/sendVideoNote", body: { chat_id: "", video_note: "" } },
|
|
2561
|
+
send_paid_media: { method: "POST", path: "/sendPaidMedia", body: { chat_id: "", star_count: 0, media: [] } },
|
|
2562
|
+
send_media_group: { method: "POST", path: "/sendMediaGroup", body: { chat_id: "", media: [] } },
|
|
2563
|
+
send_location: { method: "POST", path: "/sendLocation", body: { chat_id: "", latitude: 0, longitude: 0 } },
|
|
2564
|
+
send_venue: { method: "POST", path: "/sendVenue", body: { chat_id: "", latitude: 0, longitude: 0, title: "", address: "" } },
|
|
2565
|
+
send_contact: { method: "POST", path: "/sendContact", body: { chat_id: "", phone_number: "", first_name: "" } },
|
|
2566
|
+
send_poll: { method: "POST", path: "/sendPoll", body: { chat_id: "", question: "", options: [] } },
|
|
2567
|
+
send_dice: { method: "POST", path: "/sendDice", body: { chat_id: "", emoji: "🎲" } },
|
|
2568
|
+
send_chat_action: { method: "POST", path: "/sendChatAction", body: { chat_id: "", action: "typing" } },
|
|
2569
|
+
|
|
2570
|
+
// ── Message Editing & Deletion ───────────────────────
|
|
2571
|
+
edit_message_text: { method: "POST", path: "/editMessageText", body: { chat_id: "", message_id: 0, text: "", parse_mode: "HTML" } },
|
|
2572
|
+
edit_message_caption: { method: "POST", path: "/editMessageCaption", body: { chat_id: "", message_id: 0, caption: "" } },
|
|
2573
|
+
edit_message_media: { method: "POST", path: "/editMessageMedia", body: { chat_id: "", message_id: 0, media: {} } },
|
|
2574
|
+
edit_message_reply_markup: { method: "POST", path: "/editMessageReplyMarkup", body: { chat_id: "", message_id: 0 } },
|
|
2575
|
+
edit_message_live_location: { method: "POST", path: "/editMessageLiveLocation", body: { chat_id: "", message_id: 0, latitude: 0, longitude: 0 } },
|
|
2576
|
+
stop_message_live_location: { method: "POST", path: "/stopMessageLiveLocation", body: { chat_id: "", message_id: 0 } },
|
|
2577
|
+
delete_message: { method: "POST", path: "/deleteMessage", body: { chat_id: "", message_id: 0 } },
|
|
2578
|
+
delete_messages: { method: "POST", path: "/deleteMessages", body: { chat_id: "", message_ids: [] } },
|
|
2579
|
+
set_message_reaction: { method: "POST", path: "/setMessageReaction", body: { chat_id: "", message_id: 0, reaction: [] } },
|
|
2580
|
+
|
|
2581
|
+
// ── Chat Management ──────────────────────────────────
|
|
2582
|
+
get_chat: { method: "POST", path: "/getChat", body: { chat_id: "" } },
|
|
2583
|
+
get_chat_administrators: { method: "POST", path: "/getChatAdministrators", body: { chat_id: "" } },
|
|
2584
|
+
get_chat_member_count: { method: "POST", path: "/getChatMemberCount", body: { chat_id: "" } },
|
|
2585
|
+
get_chat_member: { method: "POST", path: "/getChatMember", body: { chat_id: "", user_id: 0 } },
|
|
2586
|
+
leave_chat: { method: "POST", path: "/leaveChat", body: { chat_id: "" } },
|
|
2587
|
+
set_chat_title: { method: "POST", path: "/setChatTitle", body: { chat_id: "", title: "" } },
|
|
2588
|
+
set_chat_description: { method: "POST", path: "/setChatDescription", body: { chat_id: "", description: "" } },
|
|
2589
|
+
set_chat_photo: { method: "POST", path: "/setChatPhoto", contentType: "multipart/form-data" },
|
|
2590
|
+
delete_chat_photo: { method: "POST", path: "/deleteChatPhoto", body: { chat_id: "" } },
|
|
2591
|
+
set_chat_permissions: { method: "POST", path: "/setChatPermissions", body: { chat_id: "", permissions: {} } },
|
|
2592
|
+
set_chat_administrator_custom_title: { method: "POST", path: "/setChatAdministratorCustomTitle", body: { chat_id: "", user_id: 0, custom_title: "" } },
|
|
2593
|
+
set_chat_menu_button: { method: "POST", path: "/setChatMenuButton", body: { chat_id: "", menu_button: {} } },
|
|
2594
|
+
get_chat_menu_button: { method: "POST", path: "/getChatMenuButton", body: { chat_id: "" } },
|
|
2595
|
+
set_my_default_admin_rights: { method: "POST", path: "/setMyDefaultAdministratorRights", body: { rights: {} } },
|
|
2596
|
+
get_my_default_admin_rights: { method: "POST", path: "/getMyDefaultAdministratorRights" },
|
|
2597
|
+
set_chat_background: { method: "POST", path: "/setChatBackground", body: { chat_id: "", background: {} } },
|
|
2598
|
+
|
|
2599
|
+
// ── Invite Links ─────────────────────────────────────
|
|
2600
|
+
export_chat_invite_link: { method: "POST", path: "/exportChatInviteLink", body: { chat_id: "" } },
|
|
2601
|
+
create_chat_invite_link: { method: "POST", path: "/createChatInviteLink", body: { chat_id: "", name: "", expire_date: 0, member_limit: 0 } },
|
|
2602
|
+
edit_chat_invite_link: { method: "POST", path: "/editChatInviteLink", body: { chat_id: "", invite_link: "" } },
|
|
2603
|
+
revoke_chat_invite_link: { method: "POST", path: "/revokeChatInviteLink", body: { chat_id: "", invite_link: "" } },
|
|
2604
|
+
create_chat_subscription_invite_link: { method: "POST", path: "/createChatSubscriptionInviteLink", body: { chat_id: "", subscription_period: 2592000, subscription_price: 0 } },
|
|
2605
|
+
edit_chat_subscription_invite_link: { method: "POST", path: "/editChatSubscriptionInviteLink", body: { chat_id: "", invite_link: "" } },
|
|
2606
|
+
|
|
2607
|
+
// ── Member Management ────────────────────────────────
|
|
2608
|
+
ban_chat_member: { method: "POST", path: "/banChatMember", body: { chat_id: "", user_id: 0 } },
|
|
2609
|
+
unban_chat_member: { method: "POST", path: "/unbanChatMember", body: { chat_id: "", user_id: 0, only_if_banned: true } },
|
|
2610
|
+
restrict_chat_member: { method: "POST", path: "/restrictChatMember", body: { chat_id: "", user_id: 0, permissions: {} } },
|
|
2611
|
+
promote_chat_member: { method: "POST", path: "/promoteChatMember", body: { chat_id: "", user_id: 0 } },
|
|
2612
|
+
approve_chat_join_request: { method: "POST", path: "/approveChatJoinRequest", body: { chat_id: "", user_id: 0 } },
|
|
2613
|
+
decline_chat_join_request: { method: "POST", path: "/declineChatJoinRequest", body: { chat_id: "", user_id: 0 } },
|
|
2614
|
+
ban_chat_sender_chat: { method: "POST", path: "/banChatSenderChat", body: { chat_id: "", sender_chat_id: 0 } },
|
|
2615
|
+
unban_chat_sender_chat: { method: "POST", path: "/unbanChatSenderChat", body: { chat_id: "", sender_chat_id: 0 } },
|
|
2616
|
+
|
|
2617
|
+
// ── Forum Topics ─────────────────────────────────────
|
|
2618
|
+
create_forum_topic: { method: "POST", path: "/createForumTopic", body: { chat_id: "", name: "" } },
|
|
2619
|
+
edit_forum_topic: { method: "POST", path: "/editForumTopic", body: { chat_id: "", message_thread_id: 0, name: "" } },
|
|
2620
|
+
close_forum_topic: { method: "POST", path: "/closeForumTopic", body: { chat_id: "", message_thread_id: 0 } },
|
|
2621
|
+
reopen_forum_topic: { method: "POST", path: "/reopenForumTopic", body: { chat_id: "", message_thread_id: 0 } },
|
|
2622
|
+
delete_forum_topic: { method: "POST", path: "/deleteForumTopic", body: { chat_id: "", message_thread_id: 0 } },
|
|
2623
|
+
unpin_all_forum_topic_messages: { method: "POST", path: "/unpinAllForumTopicMessages", body: { chat_id: "", message_thread_id: 0 } },
|
|
2624
|
+
get_forum_topic_icon_stickers: { method: "GET", path: "/getForumTopicIconStickers" },
|
|
2625
|
+
edit_general_forum_topic: { method: "POST", path: "/editGeneralForumTopic", body: { chat_id: "", name: "" } },
|
|
2626
|
+
close_general_forum_topic: { method: "POST", path: "/closeGeneralForumTopic", body: { chat_id: "" } },
|
|
2627
|
+
reopen_general_forum_topic: { method: "POST", path: "/reopenGeneralForumTopic", body: { chat_id: "" } },
|
|
2628
|
+
hide_general_forum_topic: { method: "POST", path: "/hideGeneralForumTopic", body: { chat_id: "" } },
|
|
2629
|
+
unhide_general_forum_topic: { method: "POST", path: "/unhideGeneralForumTopic", body: { chat_id: "" } },
|
|
2630
|
+
unpin_all_general_forum_topic_messages: { method: "POST", path: "/unpinAllGeneralForumTopicMessages", body: { chat_id: "" } },
|
|
2631
|
+
|
|
2632
|
+
// ── Bot Configuration ────────────────────────────────
|
|
2633
|
+
set_my_commands: { method: "POST", path: "/setMyCommands", body: { commands: [] } },
|
|
2634
|
+
get_my_commands: { method: "POST", path: "/getMyCommands" },
|
|
2635
|
+
delete_my_commands: { method: "POST", path: "/deleteMyCommands" },
|
|
2636
|
+
set_my_name: { method: "POST", path: "/setMyName", body: { name: "" } },
|
|
2637
|
+
get_my_name: { method: "POST", path: "/getMyName" },
|
|
2638
|
+
set_my_description: { method: "POST", path: "/setMyDescription", body: { description: "" } },
|
|
2639
|
+
get_my_description: { method: "POST", path: "/getMyDescription" },
|
|
2640
|
+
set_my_short_description: { method: "POST", path: "/setMyShortDescription", body: { short_description: "" } },
|
|
2641
|
+
get_my_short_description: { method: "POST", path: "/getMyShortDescription" },
|
|
2642
|
+
|
|
2643
|
+
// ── Pins ─────────────────────────────────────────────
|
|
2644
|
+
pin_chat_message: { method: "POST", path: "/pinChatMessage", body: { chat_id: "", message_id: 0 } },
|
|
2645
|
+
unpin_chat_message: { method: "POST", path: "/unpinChatMessage", body: { chat_id: "", message_id: 0 } },
|
|
2646
|
+
unpin_all_chat_messages: { method: "POST", path: "/unpinAllChatMessages", body: { chat_id: "" } },
|
|
2647
|
+
|
|
2648
|
+
// ── Stickers ─────────────────────────────────────────
|
|
2649
|
+
send_sticker: { method: "POST", path: "/sendSticker", body: { chat_id: "", sticker: "" } },
|
|
2650
|
+
get_sticker_set: { method: "POST", path: "/getStickerSet", body: { name: "" } },
|
|
2651
|
+
get_custom_emoji_stickers: { method: "POST", path: "/getCustomEmojiStickers", body: { custom_emoji_ids: [] } },
|
|
2652
|
+
upload_sticker_file: { method: "POST", path: "/uploadStickerFile", contentType: "multipart/form-data" },
|
|
2653
|
+
create_new_sticker_set: { method: "POST", path: "/createNewStickerSet", body: { user_id: 0, name: "", title: "", stickers: [] } },
|
|
2654
|
+
add_sticker_to_set: { method: "POST", path: "/addStickerToSet", body: { user_id: 0, name: "", sticker: {} } },
|
|
2655
|
+
set_sticker_position_in_set: { method: "POST", path: "/setStickerPositionInSet", body: { sticker: "", position: 0 } },
|
|
2656
|
+
delete_sticker_from_set: { method: "POST", path: "/deleteStickerFromSet", body: { sticker: "" } },
|
|
2657
|
+
replace_sticker_in_set: { method: "POST", path: "/replaceStickerInSet", body: { user_id: 0, name: "", old_sticker: "", sticker: {} } },
|
|
2658
|
+
set_sticker_set_thumbnail: { method: "POST", path: "/setStickerSetThumbnail", body: { name: "", user_id: 0 } },
|
|
2659
|
+
set_custom_emoji_sticker_set_thumbnail: { method: "POST", path: "/setCustomEmojiStickerSetThumbnail", body: { name: "" } },
|
|
2660
|
+
set_sticker_set_title: { method: "POST", path: "/setStickerSetTitle", body: { name: "", title: "" } },
|
|
2661
|
+
delete_sticker_set: { method: "POST", path: "/deleteStickerSet", body: { name: "" } },
|
|
2662
|
+
set_sticker_emoji_list: { method: "POST", path: "/setStickerEmojiList", body: { sticker: "", emoji_list: [] } },
|
|
2663
|
+
set_sticker_keywords: { method: "POST", path: "/setStickerKeywords", body: { sticker: "", keywords: [] } },
|
|
2664
|
+
set_sticker_mask_position: { method: "POST", path: "/setStickerMaskPosition", body: { sticker: "" } },
|
|
2665
|
+
|
|
2666
|
+
// ── Inline Mode ──────────────────────────────────────
|
|
2667
|
+
answer_inline_query: { method: "POST", path: "/answerInlineQuery", body: { inline_query_id: "", results: [] } },
|
|
2668
|
+
answer_web_app_query: { method: "POST", path: "/answerWebAppQuery", body: { web_app_query_id: "", result: {} } },
|
|
2669
|
+
save_prepared_inline_message: { method: "POST", path: "/savePreparedInlineMessage", body: { user_id: 0, result: {} } },
|
|
2670
|
+
|
|
2671
|
+
// ── Payments ─────────────────────────────────────────
|
|
2672
|
+
send_invoice: { method: "POST", path: "/sendInvoice", body: { chat_id: "", title: "", description: "", payload: "", currency: "XTR", prices: [] } },
|
|
2673
|
+
create_invoice_link: { method: "POST", path: "/createInvoiceLink", body: { title: "", description: "", payload: "", currency: "XTR", prices: [] } },
|
|
2674
|
+
answer_shipping_query: { method: "POST", path: "/answerShippingQuery", body: { shipping_query_id: "", ok: true } },
|
|
2675
|
+
answer_pre_checkout_query: { method: "POST", path: "/answerPreCheckoutQuery", body: { pre_checkout_query_id: "", ok: true } },
|
|
2676
|
+
get_star_transactions: { method: "POST", path: "/getStarTransactions", body: { offset: 0, limit: 100 } },
|
|
2677
|
+
refund_star_payment: { method: "POST", path: "/refundStarPayment", body: { user_id: 0, telegram_payment_charge_id: "" } },
|
|
2678
|
+
edit_user_star_subscription: { method: "POST", path: "/editUserStarSubscription", body: { user_id: 0, telegram_payment_charge_id: "", is_canceled: false } },
|
|
2679
|
+
|
|
2680
|
+
// ── Games ────────────────────────────────────────────
|
|
2681
|
+
send_game: { method: "POST", path: "/sendGame", body: { chat_id: "", game_short_name: "" } },
|
|
2682
|
+
set_game_score: { method: "POST", path: "/setGameScore", body: { user_id: 0, score: 0, chat_id: "", message_id: 0 } },
|
|
2683
|
+
get_game_high_scores: { method: "POST", path: "/getGameHighScores", body: { user_id: 0, chat_id: "", message_id: 0 } },
|
|
2684
|
+
|
|
2685
|
+
// ── Callback Queries ─────────────────────────────────
|
|
2686
|
+
answer_callback_query: { method: "POST", path: "/answerCallbackQuery", body: { callback_query_id: "", text: "" } },
|
|
2687
|
+
|
|
2688
|
+
// ── Files ────────────────────────────────────────────
|
|
2689
|
+
get_file: { method: "POST", path: "/getFile", body: { file_id: "" } },
|
|
2690
|
+
|
|
2691
|
+
// ── Gifts ────────────────────────────────────────────
|
|
2692
|
+
send_gift: { method: "POST", path: "/sendGift", body: { user_id: 0, gift_id: "" } },
|
|
2693
|
+
get_available_gifts: { method: "GET", path: "/getAvailableGifts" },
|
|
2694
|
+
gift_premium_subscription: { method: "POST", path: "/giftPremiumSubscription", body: { user_id: 0, month_count: 3, star_count: 0 } },
|
|
2695
|
+
|
|
2696
|
+
// ── Verification ─────────────────────────────────────
|
|
2697
|
+
verify_user: { method: "POST", path: "/verifyUser", body: { user_id: 0 } },
|
|
2698
|
+
verify_chat: { method: "POST", path: "/verifyChat", body: { chat_id: "" } },
|
|
2699
|
+
remove_user_verification: { method: "POST", path: "/removeUserVerification", body: { user_id: 0 } },
|
|
2700
|
+
remove_chat_verification: { method: "POST", path: "/removeChatVerification", body: { chat_id: "" } },
|
|
2529
2701
|
},
|
|
2530
2702
|
authHeader: () => ({ "Content-Type": "application/json" }),
|
|
2531
2703
|
},
|
package/lib/stats.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "0nmcp",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"mcpName": "io.github.0nork/0nMCP",
|
|
5
5
|
"description": "Universal AI API Orchestrator — 819 tools, 48 services, portable AI Brain bundles + machine-bound vault encryption + Application Engine. The most comprehensive MCP server available. Free and open source from 0nORK.",
|
|
6
6
|
"type": "module",
|
|
@@ -199,6 +199,6 @@
|
|
|
199
199
|
"triggers": 155,
|
|
200
200
|
"totalCapabilities": 1078,
|
|
201
201
|
"categories": 21,
|
|
202
|
-
"lastUpdated": "2026-04-
|
|
202
|
+
"lastUpdated": "2026-04-04T15:27:50.043Z"
|
|
203
203
|
}
|
|
204
204
|
}
|