MCP

अपने AI एजेंट को अपने ट्रैफ़िक से जोड़ें

Claude या Cursor को mcp.busymate.dev पर पॉइंट करें। वे वही लाइव फ़ीड देखते हैं जो आप देखते हैं।

An AI client window typing a tag command connects over one OAuth-keyed line to the central mcp.busymate.dev node, which fans out to an arc of tool-family chips — browser, phones, capture, TestFlight, audit, billing — with a confirm shield guarding the phones chip. { } mcp.busymate.dev browser phones capture testflight audit billing > tag 500s oauth
Claude Code में जोड़ें
bash
# Claude Code — add the server, then authorize in your browser:
claude mcp add --transport http busymate-devtools https://mcp.busymate.dev
या कोई भी MCP क्लाइंट — कॉन्फ़िग
json
{
  "mcpServers": {
    "busymate-devtools": {
      "url": "https://mcp.busymate.dev"
    }
  }
}

कंट्रोल प्लेन

The same control plane

रोल-स्कोप्ड, कन्फ़र्म-गेटेड, ऑडिट-लॉग्ड — वह सब जो डैशबोर्ड कर सकता है।

डैशबोर्ड से पूरी समानता

डैशबोर्ड की हर रीड और राइट का एक मेल खाता टूल है। जो इंसान UI में कर सकता है, एजेंट MCP से कर सकता है — यहाँ समानता स्थायी नियम है, रोडमैप आइटम नहीं।

असली सुपरपावर, CRUD नहीं

रिमोट Chrome कंट्रोल। लाइव मिररिंग के साथ Android और iOS फ़ार्म ऑटोमेशन। TestFlight बीटा एडमिन। बिलिंग। क्वेरी करने लायक ऑडिट लॉग। ये डेटाबेस के रैपर नहीं — प्लेटफ़ॉर्म की असली क्षमताएँ हैं।

OAuth 2.1, सही ढंग से

Dynamic Client Registration और PKCE — कोई पेस्ट की गई API कुंजी नहीं। जो एक टोकन मिलता है वह REST, WebSockets और Edge Functions को भी ऑथेंटिकेट करता है: हर सतह पर एक पहचान।

प्रोडक्शन के लायक सुरक्षित

हर कॉल खुद डेटाबेस द्वारा कॉलर की रोल तक सीमित होती है। विनाशकारी टूल स्पष्ट कन्फ़र्म माँगते हैं। और सब कुछ — हर टूल, हर एजेंट — ऑडिट ट्रेल में दर्ज होता है।

जोड़ने से पहले आज़माइए

डैशबोर्ड का इन-ऐप MCP कंसोल आपके अपने लॉगिन टोकन से असली टूल कॉल चलाता है और लाइव रिस्पॉन्स दिखाता है। न Postman, न मॉक सर्वर — असली API, सीधे ऐप में।

How it works

URL to tool call in four steps

The whole handshake is standard: Streamable HTTP, OAuth 2.1, JSON-RPC 2.0. Nothing proprietary to learn.

  1. 01

    Add one URL

    Point your client at mcp.busymate.dev. Discovery — initialize, tools/list, ping — answers before you even authenticate, so clients and registries can see the surface immediately.

  2. 02

    Authorize in the browser

    On the first real call your client registers itself (Dynamic Client Registration) and opens Busymate's sign-in. PKCE protects the exchange — no API keys, no secrets in config files.

  3. 03

    Call tools

    tools/call is JSON-RPC 2.0 over Streamable HTTP. Every call runs as you: the database checks your role on every row it returns.

  4. 04

    Confirm the dangerous ones

    Reads just run. Writes that change or destroy state require an explicit confirm parameter, and raw-power executors are admin-only — an agent can't wipe what you wouldn't.

A real tools/call — search your captures
json
POST https://mcp.busymate.dev   # JSON-RPC 2.0, Authorization: Bearer <token>
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "search_entries",
    "arguments": { "query": "checkout", "limit": 20 }
  }
}

What's inside

A map of the 454 tools

पूरी सतह, सीधे रजिस्ट्री से: 55 परिवार जो हर टूल को कवर करते हैं, प्रत्येक के साथ वास्तविक टूल नामों की पूरी सूची। डैशबोर्ड जो भी पढ़ता-लिखता है, वह सब यहाँ है।

list_devices · get_device · get_device_status

डिवाइस और फ़्लीट — डिवाइस सूचीबद्ध करें, जाँचें, नाम बदलें, स्थानांतरित करें और अनपेयर करें; कैप्चर चालू-बंद करें; PAC कनेक्टिविटी जाँचें; रोके गए ब्रेकपॉइंट फिर शुरू करें और अनुरोध दोबारा भेजें। विनाशकारी लेखन के लिए confirm आवश्यक है।

सभी 15 टूल
  • list_devices
  • get_device
  • get_device_status
  • rename_device
  • delete_device
  • transfer_device_ownership
  • unpair_device
  • vpn_on_device
  • vpn_off_device
  • test_pac_connection
  • open_sheet_device
  • enroll_device_capture
  • resend_request
  • breakpoint_continue
  • list_breakpoint_events
get_device_health · list_device_events · set_device_audit_mode

डिवाइस ऑब्ज़र्वेबिलिटी — कैप्चर स्वास्थ्य की एक-क्वेरी रीड (इंजन, CA ट्रस्ट, डिक्रिप्ट कारण), प्रति-डिवाइस फ़िल्टर करने योग्य टेलीमेट्री स्ट्रीम, और TTL से समाप्त होने वाला वैकल्पिक विस्तृत ऑडिट स्तर।

सभी 4 टूल
  • get_device_health
  • list_device_events
  • set_device_audit_mode
  • list_device_audit_modes
request_screen_share · stop_screen_share · list_screen_share_recordings

ग्राहक स्क्रीन शेयर — सहमति-संकेत के साथ डिवाइस का लाइव दृश्य माँगें, किसी भी ओर से समाप्त करें, और सहेजी गई रिकॉर्डिंग सूचीबद्ध करें, चलाएँ या हटाएँ।

सभी 5 टूल
  • request_screen_share
  • stop_screen_share
  • list_screen_share_recordings
  • get_screen_share_recording
  • delete_screen_share_recording
search_entries · list_entries · get_entry

कैप्चर किया गया ट्रैफ़िक — पूर्ण अनुरोध/प्रतिक्रिया जोड़े खोजें, फ़िल्टर करें, टैग करें और जाँचें; डिवाइस का ट्रैफ़िक प्रोफ़ाइल सारांशित करें; HAR निर्यात करें; और हटाएँ या मिटाएँ (confirm सहित, अपरिवर्तनीय)।

सभी 13 टूल
  • search_entries
  • list_entries
  • get_entry
  • get_entry_count
  • get_entry_counts_freshness
  • inspect_requests
  • summarize_device_traffic
  • tag_entry
  • untag_entry
  • export_har
  • delete_entries
  • wipe_entries
  • list_wipe_jobs
get_scripts_global · get_scripts_device · set_scripts_global

स्क्रिप्टिंग इंजन — सैंडबॉक्स्ड JavaScript जो मेल खाते ट्रैफ़िक को इनलाइन फिर से लिखता या बनाता है, वैश्विक, सेवा, उपयोगकर्ता और डिवाइस स्तरों पर, बिना-लेखन ड्राई-रन सहित। लेखन केवल एडमिन के लिए: यह मनमाने कोड की शक्ति है।

सभी 9 टूल
  • get_scripts_global
  • get_scripts_device
  • set_scripts_global
  • set_scripts_device
  • set_scripts_user
  • set_scripts_service
  • dry_run_script
  • get_script_engine_enabled
  • set_script_engine_enabled
get_block_rules_global · get_block_rules_device · set_block_rules_global

ब्लॉक नियम और ब्रेकपॉइंट — मेथड और होस्ट/पथ वाइल्डकार्ड से अनुरोधों को स्वतः ब्लॉक या मॉक करें, और वे पैटर्न सेट करें जो मेल खाते आदान-प्रदान को जाँच हेतु रोकते हैं। लेखन लाइव ट्रैफ़िक बदलते हैं, इसलिए confirm आवश्यक है।

सभी 10 टूल
  • get_block_rules_global
  • get_block_rules_device
  • set_block_rules_global
  • set_block_rules_device
  • set_block_rules_user
  • set_block_rules_service
  • set_breakpoint_patterns_global
  • set_breakpoint_patterns_device
  • set_breakpoint_patterns_user
  • set_breakpoint_patterns_service
get_inspect_all_requests · set_inspect_all_requests · get_mitm_all_hosts

कैप्चर स्विच — सभी-अनुरोध-जाँचें, सभी-होस्ट-डिक्रिप्ट MITM मोड, और रोके गए डोमेन की सूची — प्रत्येक एक पठन/लेखन जोड़ी।

सभी 6 टूल
  • get_inspect_all_requests
  • set_inspect_all_requests
  • get_mitm_all_hosts
  • set_mitm_all_hosts
  • get_paused_domains
  • set_paused_domains
get_global_settings · get_device_settings · set_global_connection_type

सेटिंग्स — प्रभावी वैश्विक और प्रति-डिवाइस सेटिंग दस्तावेज़, वैश्विक, उपयोगकर्ता और डिवाइस स्तरों पर कनेक्शन प्रकार, और iOS Live Activity पिल का टेक्स्ट।

सभी 6 टूल
  • get_global_settings
  • get_device_settings
  • set_global_connection_type
  • set_device_connection_type
  • set_user_connection_type
  • set_live_activity_message
get_env_global · get_env_device · set_env_var_global

पर्यावरण चर — वैश्विक और प्रति-डिवाइस चर-सेट पढ़ें, सेट करें, हटाएँ और थोक में आयात करें, जिन्हें स्क्रिप्ट और नियम इंटरपोलेट करते हैं।

सभी 8 टूल
  • get_env_global
  • get_env_device
  • set_env_var_global
  • set_env_var_device
  • delete_env_var_global
  • delete_env_var_device
  • import_env_global
  • import_env_device
list_proxies · set_device_external_proxy · get_device_egress_status

इग्रेस नियंत्रण — अपस्ट्रीम प्रॉक्सी पूल (क्रेडेंशियल छिपाए गए), प्रति-डिवाइस बाहरी प्रॉक्सी रूटिंग, लाइव इग्रेस-IP स्थिति, TTL वाले मैनुअल ओवरराइड और विफलता मुद्रा।

सभी 7 टूल
  • list_proxies
  • set_device_external_proxy
  • get_device_egress_status
  • set_manual_egress_ip
  • clear_manual_egress_ip
  • get_device_egress_fail_posture
  • set_device_egress_fail_posture
browser_targets · browser_open · browser_eval

रिमोट ब्राउज़र — पेज खोलें, स्क्रिप्ट चलाएँ, जुड़े Chrome का स्क्रीनशॉट और स्नैपशॉट लें — प्रति-डिवाइस ऑप्ट-इन के पीछे। कच्चा Chrome DevTools Protocol पासथ्रू केवल एडमिन के लिए।

सभी 9 टूल
  • browser_targets
  • browser_open
  • browser_eval
  • browser_screenshot
  • browser_snapshot
  • browser_cdp
  • set_device_cdp_control
  • set_device_capture_enabled
  • set_device_autostart
list_browser_profiles · get_browser_profile · upsert_browser_profile

ब्राउज़र प्रोफ़ाइल — डैशबोर्ड में बनाए और bmc CLI से सिंक किए गए कस्टम Chromium-परिवार लॉन्च प्रोफ़ाइल पर CRUD।

सभी 4 टूल
  • list_browser_profiles
  • get_browser_profile
  • upsert_browser_profile
  • delete_browser_profile
list_cdp_instances · start_device · stop_device

CDP डेमन — दूरस्थ bmc मशीन पर नामित ब्राउज़र-कैप्चर डिवाइस शुरू, बंद और प्रोविज़न करें, डेमन की स्थिति व लॉग पढ़ें, और कैप्चर खोए बिना हॉट-अपडेट करें।

सभी 9 टूल
  • list_cdp_instances
  • start_device
  • stop_device
  • create_device
  • update_cdp_host
  • get_cdp_daemon_status
  • get_cdp_logs
  • restart_cdp_daemon
  • update_cdp_daemon
provision_farm_phone · list_farm_devices · farm_list_phones

एंड्रॉइड फ़ार्म — फ़ोन को चाइल्ड डिवाइस के रूप में प्रोविज़न करें, फ़्लीट सूचीबद्ध करें, स्क्रीनशॉट लें, UI पदानुक्रम निकालें, और कैप्चर स्थिति, ऑटोमेशन, रिकॉर्डिंग, शेड्यूल व डेमन लॉग पढ़ें।

सभी 10 टूल
  • provision_farm_phone
  • list_farm_devices
  • farm_list_phones
  • farm_capture_status
  • farm_screenshot
  • farm_dump_ui
  • farm_list_automations
  • farm_list_recordings
  • farm_list_schedules
  • get_farm_logs
farm_mobile_list_devices · farm_mobile_list_apps · farm_mobile_list_elements

फ़ार्म फ़ोन चलाना — असली फ़ोन पर टैप, स्वाइप, टाइप, बटन दबाना, ऐप लॉन्च/बंद करना, स्क्रीनशॉट, रिकॉर्डिंग और क्रैश लॉग पढ़ना; ऐप इंस्टॉल/अनइंस्टॉल केवल एडमिन के लिए।

सभी 24 टूल
  • farm_mobile_list_devices
  • farm_mobile_list_apps
  • farm_mobile_list_elements
  • farm_mobile_get_screen_size
  • farm_mobile_get_orientation
  • farm_mobile_screenshot
  • farm_mobile_list_crashes
  • farm_mobile_get_crash
  • farm_mobile_tap
  • farm_mobile_double_tap
  • farm_mobile_long_press
  • farm_mobile_swipe
  • farm_mobile_type
  • farm_mobile_press_button
  • farm_mobile_open_url
  • farm_mobile_launch_app
  • farm_mobile_terminate_app
  • farm_mobile_set_orientation
  • farm_mobile_start_recording
  • farm_mobile_stop_recording
  • farm_mobile_install_app
  • farm_mobile_uninstall_app
  • farm_mobile_install_from_appstore
  • farm_device_logs
farm_find_and_tap · farm_set_setting · farm_set_wifi

फ़ार्म क्रियाएँ — सामग्री से खोजें-और-टैप करें, सेटिंग्स व Wi-Fi बदलें, ऐप जीवनचक्र प्रबंधित करें, अनुमतियाँ दें, फ़ाइलें खींचें, और रिकॉर्ड की गई ऑटोमेशन चलाएँ, दोहराएँ या शेड्यूल करें (confirm सहित)।

सभी 11 टूल
  • farm_find_and_tap
  • farm_set_setting
  • farm_set_wifi
  • farm_app_lifecycle
  • farm_grant_permission
  • farm_uninstall_app
  • farm_pull_file
  • farm_run_automation
  • farm_replay_recording
  • farm_schedule
  • farm_remove_schedule
farm_run_shell · farm_run_adb · farm_install_app

फ़ार्म की कच्ची शक्ति — शेल, adb, मनमाना इनपुट, प्रॉक्सी व एयरप्लेन टॉगल, रीबूट और फ़ाइल पुश। केवल एडमिन, confirm सहित, और मुक्त-पाठ सहायक से पूर्णतः बाहर।

सभी 8 टूल
  • farm_run_shell
  • farm_run_adb
  • farm_install_app
  • farm_input
  • farm_set_proxy
  • farm_set_airplane
  • farm_reboot
  • farm_push_file
provision_ios_phone · list_ios_phones · ios_list_phones

iOS फ़ार्म — iPhone समकक्ष: प्रोविज़न, सूची, स्क्रीनशॉट, UI डंप, टैप व इनपुट चलाना, ऐप्स और ओरिएंटेशन प्रबंधन, ऑन-डिवाइस कंट्रोल रनर ऑनबोर्ड करना, और लाइव मिरर शुरू करना।

सभी 16 टूल
  • provision_ios_phone
  • list_ios_phones
  • ios_list_phones
  • ios_screenshot
  • ios_dump_ui
  • ios_list_apps
  • ios_find_and_tap
  • ios_input
  • ios_app_lifecycle
  • ios_open_url
  • ios_set_orientation
  • ios_install_app
  • ios_uninstall_app
  • setup_ios_devicekit
  • enroll_farm_phone_app
  • ios_start_mirror
farm_start_mirror · set_farm_mirror_transport · farm_get_variables

लाइव मिरर और नियंत्रण ताले — एकल-उपयोग रिले टोकन से टच इनपुट वाला कम-विलंब फ़ोन मिरर शुरू करें, ट्रांसपोर्ट ट्यून करें, ऑटोमेशन चर प्रबंधित करें, और डिवाइस का अनन्य नियंत्रण लें या छोड़ें।

सभी 7 टूल
  • farm_start_mirror
  • set_farm_mirror_transport
  • farm_get_variables
  • farm_set_variables
  • acquire_device_control
  • release_device_control
  • admin_force_release_device_control
get_farm_phone_health · farm_retry_phone · farm_restart_tunnel

फ़ार्म फ़ोन स्वास्थ्य और पुनर्प्राप्ति — प्रति-फ़ोन स्थिति/कारण/समाधान मॉडल, साथ ही सॉफ़्टवेयर-प्रथम मरम्मत सीढ़ी: पुनः प्रयास, टनल रीस्टार्ट, रिमोट रीबूट, प्रति-पोर्ट USB पावर-साइकिल और संयोजित फ़्लीट हीलिंग।

सभी 7 टूल
  • get_farm_phone_health
  • farm_retry_phone
  • farm_restart_tunnel
  • power_cycle_farm_hub
  • cycle_farm_phone_port
  • heal_farm_fleet
  • ios_reboot
get_farm_daemon_status · restart_farm_daemon · update_farm_daemon

फ़ार्म डेमन और घटक — लाइव डेमन स्थिति, रीस्टार्ट व स्व-अद्यतन, टनल सफ़ाई, और एक फ़ोन या पूरी फ़्लीट पर प्रति-घटक इंस्टॉल/अपडेट/ऑनबोर्ड जीवनचक्र।

सभी 8 टूल
  • get_farm_daemon_status
  • restart_farm_daemon
  • update_farm_daemon
  • farm_reap_tunnels
  • update_farm_component
  • update_farm_fleet
  • onboard_farm_fleet
  • farm_component_action
list_workspaces · get_workspace · create_workspace

वर्कस्पेस और टैब — रिटेंशन नीति वाले साझा वर्कस्पेस, साथ ही टैब मॉडल: बनाएँ, नाम बदलें, फ़िल्टर करें और ठीक वही चुनें जो डैशबोर्ड दिखाता है।

सभी 12 टूल
  • list_workspaces
  • get_workspace
  • create_workspace
  • rename_workspace
  • delete_workspace
  • set_workspace_retention
  • list_tabs
  • create_tab
  • rename_tab
  • delete_tab
  • set_tab_filters
  • set_tab_selected_entry
create_snapshot · list_snapshots · download_snapshot

स्नैपशॉट — वर्कस्पेस के ट्रैफ़िक के समय-बिंदु कैप्चर बनाएँ, सूचीबद्ध करें और डाउनलोड करें।

list_service_groups · get_service_group · upsert_service_group

सेवा समूह और टैग — होस्ट को जुड़े एजेंटों वाले नामित सेवाओं में समूहित करें, डिवाइस सदस्यता प्रबंधित करें, और वह टैग शब्दावली जिनसे प्रविष्टियाँ चिह्नित होती हैं।

सभी 11 टूल
  • list_service_groups
  • get_service_group
  • upsert_service_group
  • delete_service_group
  • set_service_group_agents
  • list_device_service_groups
  • add_device_to_service_group
  • remove_device_from_service_group
  • list_tags
  • upsert_tag
  • delete_tag
list_todos · get_todo · create_todo

टू-डू — स्वामी-स्कोप वाला साझा कार्य बोर्ड: सूचीबद्ध करें, बनाएँ, अद्यतन करें, पूर्ण करें और हटाएँ — हर सतह पर लाइव।

सभी 6 टूल
  • list_todos
  • get_todo
  • create_todo
  • update_todo
  • complete_todo
  • delete_todo
list_notifications · mark_notification_read · get_notification_prefs

सूचनाएँ — इन-ऐप सूचना केंद्र: पढ़ें और संग्रहित करें, म्यूट विंडो सहित प्रति-प्रकार चैनल वरीयताएँ, और स्व-सूचना।

सभी 7 टूल
  • list_notifications
  • mark_notification_read
  • get_notification_prefs
  • set_notification_prefs
  • create_notification
  • notify_users
  • list_web_push_subscriptions
list_push_tokens · send_push · get_push_response

डिवाइस पुश — APNs टोकन सूचीबद्ध करें, सूचनाएँ भेजें (कार्रवाई योग्य स्वीकार/अस्वीकार संकेत सहित), और डिवाइस का उत्तर वापस पढ़ें।

list_advisor_findings · get_advisor_finding · share_advisor_finding

एडवाइज़र सेंटर और समस्या रिपोर्ट — साक्ष्य व डीप लिंक सहित समृद्ध निष्कर्ष ब्राउज़ करें, किसी को GitHub इश्यू या टू-डू बनाएँ, और वन-टैप समस्या रिपोर्ट दर्ज करें या सूचीबद्ध करें।

सभी 7 टूल
  • list_advisor_findings
  • get_advisor_finding
  • share_advisor_finding
  • fix_advisor_finding_issue
  • fix_advisor_finding_todo
  • report_issue
  • list_issue_reports
get_telegram_link · list_telegram_links · link_telegram

टेलीग्राम लिंकिंग — टेलीग्राम बॉट से पाँच तक खाते जोड़ें, सक्रिय खाता बदलें, और अनलिंक करें (एडमिन संस्करण सहित)।

सभी 5 टूल
  • get_telegram_link
  • list_telegram_links
  • link_telegram
  • unlink_telegram
  • admin_unlink_telegram
list_busybro_sessions · get_busybro_session · create_busybro_session

सहायक सत्र — AI सहायक के बहु-सत्र चैट थ्रेड, अपलोड किए गए अनुलग्नक (अल्पकालिक हस्ताक्षरित URL), और साझा वार्तालाप लिंक।

सभी 8 टूल
  • list_busybro_sessions
  • get_busybro_session
  • create_busybro_session
  • rename_busybro_session
  • delete_busybro_session
  • list_busybro_attachments
  • get_busybro_share
  • delete_busybro_share
list_memories · save_memory · forget_memory

सहायक स्मृति — व्यक्तिगत दीर्घकालिक स्मृति और शासित टीम स्टोर: साझा तथ्य प्रस्तावित, स्वीकृत, अस्वीकृत और संपादित करें, एट्रिब्यूशन, और प्रति-उपयोगकर्ता GDPR मिटाने का मार्ग।

सभी 13 टूल
  • list_memories
  • save_memory
  • forget_memory
  • get_memory_stats
  • list_global_memories
  • propose_global_memory
  • approve_global_memory
  • reject_global_memory
  • update_global_memory
  • list_memory_contributors
  • admin_list_user_memories
  • admin_forget_user_memory
  • gdpr_forget_user
list_skills · get_skill · upsert_skill

सहायक कौशल — निर्देश-और-टूल बंडल जिन्हें सहायक चैट के बीच सक्रिय करता है, प्रति-कौशल फ़ाइलों और AI-प्रारूपित प्रारंभ बिंदु सहित। लेखन केवल एडमिन के लिए।

सभी 10 टूल
  • list_skills
  • get_skill
  • upsert_skill
  • delete_skill
  • set_skill_enabled
  • draft_skill
  • list_skill_files
  • get_skill_file
  • upsert_skill_file
  • delete_skill_file
list_repo_skills · edit_repo_skill · set_repo_skill_enabled

रिपो कौशल — git-प्रतिबद्ध SKILL.md कॉर्पस: इसे पढ़ें, और समीक्षित कमिट के रूप में प्रविष्टियाँ संपादित, टॉगल या हटाएँ। लेखन केवल-एडमिन git राइट-बैक है।

सभी 4 टूल
  • list_repo_skills
  • edit_repo_skill
  • set_repo_skill_enabled
  • remove_repo_skill
list_agents · get_agent · upsert_agent

सहायक एजेंट — विशेषज्ञ-एजेंट रजिस्ट्री जिसे कार्य सौंपे जाते हैं और सेवा समूह संदर्भित करते हैं। लेखन केवल एडमिन के लिए।

सभी 4 टूल
  • list_agents
  • get_agent
  • upsert_agent
  • delete_agent
import_resource · list_imports · get_import

ज्ञान आयात — टीम ज्ञान भंडार में कोई रिपो या अपलोड फ़ाइल कतारबद्ध करें; वर्कर लाता, ऑडिट करता, एम्बेड करता और डुप्लिकेट हटाता है — लाइव प्रगति व थोक पूर्ववत सहित।

सभी 4 टूल
  • import_resource
  • list_imports
  • get_import
  • delete_import
get_busybro_usage · get_busybro_settings · set_busybro_settings

सहायक कॉन्फ़िगरेशन — टोकन व लागत विश्लेषण, वैश्विक चालू/बंद स्विच, और ब्रेन के मॉडल व व्यवहार नॉब (लेखन केवल एडमिन)।

सभी 5 टूल
  • get_busybro_usage
  • get_busybro_settings
  • set_busybro_settings
  • get_busybro_enabled
  • set_busybro_enabled
list_plugins · get_plugin · install_plugin

प्लगइन — पैक की गई एक्सटेंशन ब्राउज़, इंस्टॉल और अनइंस्टॉल करें; प्रकाशन व हटाना केवल एडमिन के लिए।

सभी 7 टूल
  • list_plugins
  • get_plugin
  • install_plugin
  • uninstall_plugin
  • upsert_plugin
  • set_plugin_install_enabled
  • delete_plugin
list_directory · list_directory_listings · upsert_directory_listing

निर्देशिका और इंस्टॉल — कौशल व प्लगइन का प्रकाशित कैटलॉग, ऑपरेटर-चयनित सूचियाँ, प्रति-उपयोगकर्ता कौशल इंस्टॉल, और नए उपयोगकर्ताओं को मिलने वाले इंस्टॉल डिफ़ॉल्ट।

सभी 9 टूल
  • list_directory
  • list_directory_listings
  • upsert_directory_listing
  • set_directory_listing_status
  • delete_directory_listing
  • list_install_defaults
  • set_install_default
  • install_skill
  • uninstall_skill
list_mcp_servers · upsert_mcp_server · delete_mcp_server

डाउनस्ट्रीम MCP सर्वर — बाहरी MCP सर्वर पंजीकृत, सक्षम और निरीक्षण करें जिनके ज़रिए सहायक कॉल कर सकता है।

सभी 5 टूल
  • list_mcp_servers
  • upsert_mcp_server
  • delete_mcp_server
  • set_mcp_server_enabled
  • inspect_mcp_server
list_my_mcp_connectors · upsert_my_mcp_connector · delete_my_mcp_connector

व्यक्तिगत कनेक्टर — पूर्ण OAuth 2.1 क्लाइंट लेग (डिस्कवरी, DCR, PKCE) वाले आपके अपने आउटबाउंड MCP कनेक्टर; टोकन केवल-लेखन वॉल्ट में जाते हैं, कभी वापस पढ़े नहीं जाते।

सभी 9 टूल
  • list_my_mcp_connectors
  • upsert_my_mcp_connector
  • delete_my_mcp_connector
  • set_my_mcp_connector_enabled
  • set_my_mcp_connector_secret
  • set_my_connector_oauth_client_secret
  • probe_mcp_connector
  • connect_my_mcp_connector
  • disconnect_my_mcp_connector
get_my_account · delete_my_account · set_my_display_name

मेरा खाता — प्रोफ़ाइल, डिवाइस, सदस्यता और एंडपॉइंट एक स्व-स्कोप रीड में; प्रदर्शित व पसंदीदा नाम, प्रति-उपयोगकर्ता सहायक सेटिंग्स, और स्वयं-सेवा खाता हटाना (confirm सहित)।

सभी 6 टूल
  • get_my_account
  • delete_my_account
  • set_my_display_name
  • set_my_preferred_name
  • get_my_busybro_settings
  • set_my_busybro_settings
list_roles · create_role · update_role

भूमिकाएँ और उपयोगकर्ता — RBAC भूमिकाएँ व क्षमताएँ, प्रति-उपयोगकर्ता भूमिका असाइनमेंट, विन्यास योग्य डिफ़ॉल्ट साइनअप भूमिका, और सटीक ईमेल लुकअप वाला एडमिन उपयोगकर्ता रोस्टर।

सभी 9 टूल
  • list_roles
  • create_role
  • update_role
  • delete_role
  • set_user_role
  • set_default_role
  • list_users
  • get_user
  • admin_delete_user
list_access_grants · create_access_grant · revoke_access_grant

पहुँच अनुदान और प्रतिरूपण — समय-सीमित क्षमता अनुदान, प्रभावी अनुमतियों का पूर्वावलोकन, और स्पष्ट समाप्ति वाला ऑडिटेड समर्थन प्रतिरूपण।

सभी 6 टूल
  • list_access_grants
  • create_access_grant
  • revoke_access_grant
  • preview_effective_permissions
  • impersonate_user
  • end_impersonation
list_audit_events · get_audit_event

ऑडिट ट्रेल — हर सतह पर हर कार्रवाई का फ़िल्टर-योग्य, पृष्ठांकित किसने-क्या-कब बहीखाता, एजेंट सहित, प्रति-घटना पूर्ण विवरण के साथ।

get_stats · get_status

लाइव आँकड़े और स्थिति — प्लेटफ़ॉर्म-व्यापी कैप्चर आँकड़े और एक नज़र में इन्फ्रास्ट्रक्चर स्वास्थ्य।

get_subscription · list_invoices · get_usage

बिलिंग — आपकी सदस्यता, चालान और मीटर्ड उपयोग, चेकआउट व ग्राहक-पोर्टल सत्र, और मूल्य-रहित Stripe एडमिन रीड तथा गैर-गुप्त कॉन्फ़िग लेखन (रद्द करने हेतु confirm आवश्यक)।

सभी 13 टूल
  • get_subscription
  • list_invoices
  • get_usage
  • create_checkout_session
  • get_stripe_config
  • list_prices
  • list_customers
  • get_webhook_events
  • get_billing_settings
  • set_default_price
  • set_billing_settings
  • report_usage_now
  • cancel_subscription
list_testflight_groups · list_testflight_testers · get_testflight_tester

TestFlight बीटा एडमिन — समूह, परीक्षक, आमंत्रण और App Store समीक्षा स्थिति, आमंत्रित करने, हटाने व समूह-सदस्यता लेखन सहित (confirm सहित)।

सभी 14 टूल
  • list_testflight_groups
  • list_testflight_testers
  • get_testflight_tester
  • list_testflight_invitations
  • list_testflight_users
  • list_testflight_user_invitations
  • get_app_store_status
  • invite_testflight_tester
  • delete_testflight_tester
  • add_testflight_tester_to_group
  • remove_testflight_tester_from_group
  • send_testflight_invitation
  • invite_testflight_user
  • cancel_testflight_user_invitation
list_locales · upsert_locale · delete_locale

स्थानीयकरण — लोकेल, नेमस्पेस, कुंजियाँ व संदेश, कवरेज आँकड़े और लापता-अनुवाद रिपोर्ट, मशीन अनुवाद, थोक आयात और कैटलॉग प्रकाशन।

सभी 21 टूल
  • list_locales
  • upsert_locale
  • delete_locale
  • set_default_locale
  • list_i18n_namespaces
  • upsert_i18n_namespace
  • list_i18n_keys
  • upsert_i18n_key
  • delete_i18n_key
  • list_i18n_messages
  • upsert_i18n_message
  • delete_i18n_message
  • get_i18n_settings
  • set_i18n_settings
  • get_i18n_manifest
  • get_i18n_stats
  • get_i18n_missing_report
  • get_i18n_catalog
  • import_i18n
  • machine_translate_i18n
  • publish_i18n_catalog
list_api_projects · create_api_project · update_api_project

ऑब्ज़र्व्ड API — कैप्चर किए ट्रैफ़िक को साक्ष्य-समर्थित API मॉडल में बदलें: प्रोजेक्ट, अपरिवर्तनीय संशोधन, समीक्षा योग्य पथ उम्मीदवार, ड्रिफ़्ट पहचान और नियतात्मक OpenAPI 3.1 निर्यात।

सभी 13 टूल
  • list_api_projects
  • create_api_project
  • update_api_project
  • refresh_api_project
  • set_api_project_schedule
  • set_api_project_archived
  • delete_api_project
  • get_api_revision
  • list_api_candidates
  • review_api_candidate
  • export_api_spec
  • generate_api_asset
  • list_api_drift
list_federation_clients · upsert_federation_client · delete_federation_client

फ़ेडरेटेड SSO — एडमिन-ऑनबोर्डेड बंद पार्टनर-क्लाइंट रजिस्ट्री; रहस्य केवल वॉल्ट नाम हैं, कभी मान नहीं।

list_app_secrets · create_app_secret · update_app_secret

ऐप सीक्रेट — वॉल्ट-समर्थित सीक्रेट स्टोर: नाम व मेटाडेटा सूचीबद्ध हो सकते हैं, मान केवल-लेखन हैं और किसी सतह पर वापस नहीं पढ़े जाते। परिवर्तन केवल एडमिन के लिए।

सभी 4 टूल
  • list_app_secrets
  • create_app_secret
  • update_app_secret
  • delete_app_secret
list_demo_users · get_demo_status · create_demo_user

डेमो खाते — निर्देशित डेमो उपयोगकर्ताओं और उनकी नमूना सामग्री को प्रोविज़न, रीसेट और पुनर्जनित करें।

सभी 6 टूल
  • list_demo_users
  • get_demo_status
  • create_demo_user
  • reset_demo_user
  • delete_demo_user
  • regenerate_demo_content
get_test_status · run_test_suite · cancel_test_run

गुणवत्ता — टेस्ट सूट चलाएँ, दोबारा चलाएँ और रद्द करें, और लाइव परिणाम, इतिहास व फ़ीचर-से-टेस्ट कवरेज मानचित्र पढ़ें।

सभी 8 टूल
  • get_test_status
  • run_test_suite
  • cancel_test_run
  • rerun_test_suite
  • list_test_suites
  • get_test_coverage
  • get_test_path_coverage
  • get_test_suite_history
wip_list · wip_update · wip_clear_done

कार्य-प्रगति बोर्ड — खुले काम का लाइव प्रक्षेपण: सूचीबद्ध करें, अद्यतन करें, इतिहास और पूर्ण साफ़ करें।

सभी 4 टूल
  • wip_list
  • wip_update
  • wip_clear_done
  • wip_task_history
db_select · db_insert · db_update

कच्चा डेटाबेस और रीयलटाइम — सीधा टेबल CRUD, RPC और ब्रॉडकास्ट। एस्केप हैच: केवल एडमिन और मुक्त-पाठ सहायक से पूर्णतः बाहर।

सभी 7 टूल
  • db_select
  • db_insert
  • db_update
  • db_delete
  • db_rpc
  • list_tables
  • realtime_broadcast

The gating model

Power, gated honestly

An agent with this much reach needs real guardrails, not a disclaimer. These are the actual gates, in the order a call meets them.

OAuth 2.1DCR + PKCE

The only way in. Dynamic Client Registration plus PKCE issues the token; there is no pasted API key and no session-token path.

initialize · tools/list · pingpre-auth

Discovery is served before login with a scoped read-only public profile, so clients can enumerate the surface — but tools/call and every write stay OAuth-gated.

confirm: truewrites

Every destructive or state-changing tool demands an explicit confirm parameter — an agent has to state what it's about to do before it does it.

adminOnly · powerdenylisted

Raw-power executors (direct database access, raw broadcast) are admin-only and excluded from the free-text assistant entirely.

audit_logevery call

Every tool call lands in the audit trail with its actor and arguments — and the trail itself is queryable and live-subscribable.

One platform, five surfaces

If the dashboard can, so can your agent

Parity is a standing rule here: every capability aligns across the dashboard, MCP, REST, WebSockets and BusyBro — same data, same permissions, checked on every ship.

FAQ

Before you connect

Which MCP clients work with Busymate DevTools?

Any client that speaks the Streamable-HTTP transport with OAuth: Claude Code, Claude.ai and Claude Desktop, Cursor, VS Code, ChatGPT developer-mode connectors, Continue, Cline, Zed, or your own agent. The install page has copy-paste configs for each.

Do I need an API key?

No. Access is OAuth 2.1 with Dynamic Client Registration and PKCE — your client registers itself and you authorize in the browser. The token it receives also authenticates REST, WebSockets and Edge Functions.

What's the connection URL?

https://mcp.busymate.dev — the canonical host. The older mcp.busymate.net keeps serving the same server forever, and OAuth issues host-matched metadata on both, so an existing client config never breaks.

Can an agent break something?

Only what your own role allows, and only with an explicit confirm on destructive tools. Raw-power executors are admin-only, and every call is written to the audit trail.

Can I see the tools before authorizing?

Yes — discovery (initialize, tools/list, ping) answers pre-auth with a scoped read-only public profile, so registries and clients can enumerate the surface before OAuth consent. Calling anything still requires authorization.

Is this the same data as the dashboard?

The same rows, live. MCP is one of five parity surfaces over one platform — the dashboard, MCP, REST, WebSockets and BusyBro expose the same capabilities, by standing rule.

Connect your MCP client

Cursor या VS Code के लिए एक क्लिक, या कॉन्फ़िग पेस्ट करें। एक बार ऑथराइज़ करें, फिर 454 टूल में से कोई भी कॉल करें।

Ask your mate