backping
A macOS menu-bar app that lets Codex, Claude, and other MCP clients ask you questions through Telegram or Slack when they would otherwise get stuck.
Install / Use
claude mcp add sitaramshelke -- npx -y github:sitaramshelke/backpingIf the server publishes to npm under a different name, use that package instead — check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
CommunicationSupported Platforms
Our assessment of backping
backping scores 77/100 on our quality scale, 143rd of 170 Communication skills we index.
Its MCP Server is 10 KB long, well organised into 14 sections with 11 code examples: a thorough specification that gives an agent plenty to work with.
It has 3 GitHub stars, so there is little community track record yet; judge it on its content.
Maintenance, license and trust
- The repository was last updated about 4 months ago. That is recent enough to be usable, but agent tooling moves fast, so check the instructions against your agent's current version.
- Our last check on 2026-09-10 found the source still online.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 90/100, with 1 caution from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands.
Automated pattern scan on 2026-09-26. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
backping compared with similar skills
All 4 of these similar skills score higher than backping; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| backping (this skill)by sitaramshelke | 77 | 3 | 4mo ago | MCP Server |
| Agent-Reachby Panniantong | 100 | 85.4k | 10d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.8k | today | CLAUDE.md |
| rufloby ruvnet | 100 | 73.3k | 1d ago | CLAUDE.md |
| CowAgentby zhayujie | 100 | 47.1k | today | CLAUDE.md |
Frequently asked questions
- How do I install backping?
- Run
claude mcp add sitaramshelke -- npx -y github:sitaramshelke/backping. The install tabs above show the steps for each supported agent. - Which AI agents does backping work with?
- It is written for Claude Code, Claude Desktop and OpenAI Codex, as a MCP Server file. Other agents that read the same format can often use it too.
- Is backping safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. It is MIT-licensed and scores 90/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is backping still maintained?
- The repository was last updated about 4 months ago. That is recent enough to be usable, but agent tooling moves fast, so check the instructions against your agent's current version.
Skill content
View source on GitHubBackPing
BackPing is a local tray app for one narrow job: helping local coding agents avoid getting stuck when they need human input.
It exposes a localhost MCP server for MCP-capable agents such as Codex CLI, Codex desktop, Claude Code, Claude desktop, and other clients that can use Streamable HTTP MCP. When an agent calls ask_user, BackPing sends the question to Telegram or Slack, waits for your answer, and returns that answer to the agent.
BackPing does not execute commands, start agents, stream logs, or provide remote terminal access.
Download
Download the latest unsigned build for your OS from GitHub Releases.
- macOS Apple Silicon: BackPing-latest-arm64.dmg
- Windows x64: BackPing-latest-windows-x64.exe
These builds are unsigned. macOS may warn on first launch; for a trusted local build, use right-click, then Open. Windows may show SmartScreen warnings; use these Windows builds for testing until they have more real-machine coverage.
Status
This is an early V1 for local testing and small-team sharing.
Implemented:
- Electron tray/menu-bar app.
- Local Streamable HTTP MCP endpoint on
127.0.0.1. - Bearer-token auth for MCP.
- Telegram provider using long polling.
/startsetup flow that learns your Telegram chat.- Slack provider using Socket Mode, with answers routed through Slack threads.
- One active messaging provider at a time.
- Multiple concurrent pending questions.
- Inline Telegram buttons for choices.
- Slack Block Kit buttons for choices.
- Reply-to-message answer routing.
- Local JSON request history.
- Electron
safeStorage-backed local secret storage for Telegram and Slack tokens, with legacy macOS Keychain migration. - Copyable MCP config and agent instruction snippets.
- Optional launch-at-login startup.
- Unsigned macOS app/DMG packaging.
- Unsigned Windows installer packaging.
Deferred:
- Stdio MCP wrapper.
- Signed/notarized releases.
- Automatic MCP config editing.
Logo
BackPing uses an Agent Plane mark: an AI agent inside a message bubble sending a paper-plane message.
![]()
Requirements
- macOS or Windows.
- Node.js and npm.
- A Telegram account or Slack workspace access.
- An MCP client that supports Streamable HTTP, such as Codex CLI, Codex desktop, Claude Code, Claude desktop, or another compatible agent client.
Development
Install dependencies:
npm install
Run the app:
npm run dev
Check types:
npm run typecheck
Run tests:
npm test
Verify icon assets and refresh the README/GitHub Pages PNG plus Windows ICO derived from the app icon. This helper currently requires macOS because it uses sips; the generated assets are committed for Windows builds:
npm run icons
Build the unsigned app:
npm run package:mac
Build an unsigned DMG:
npm run dmg
Build an unsigned Windows installer:
npm run package:win
The packaged output is written under release/.
Telegram Setup
- Open Telegram and message
@BotFather. - Send
/newbotand create a bot. - Copy the bot token.
- Open BackPing settings.
- Paste the token into the Telegram section and save.
- Open your new bot in Telegram and send
/start. - BackPing stores that chat as the only allowed chat.
BackPing ignores messages from other Telegram chats.
Slack Setup
Slack is useful on work laptops where Slack is allowed but Telegram Bot API traffic is blocked. BackPing uses Slack Socket Mode, so it does not need a public URL or any inbound network port.
Use a separate Slack app per person. That keeps each user's agent questions private to their own Slack bot and local BackPing daemon. Do not share Slack app tokens across teammates.
The fastest setup is the reusable manifest in slack-app-manifest.example.json:
- Copy
slack-app-manifest.example.json. - Replace
your-nameindisplay_information.nameandfeatures.bot_user.display_name. - Use a recognizable personal name, such as
BackPing - Your Namefor the app name andbackping-your-namefor the bot display name. Slack bot display names should stay lowercase and avoid spaces. - Open Slack Apps, click
Create New App, then chooseFrom an app manifest. - Paste the edited manifest and create the app.
- Open
Settings > Basic Information, scroll down toApp-Level Tokens, then clickGenerate Token and Scopes. - Name the token something like
BackPing Local, add theconnections:writescope, then generate and copy the token starting withxapp-. - Install the app to the workspace and copy the Bot User OAuth Token starting with
xoxb-fromOAuth & Permissions. - Copy your Slack user ID: in Slack, open your profile, click
More, then clickCopy member ID. It usually looks likeU123ABCDEF. - Open BackPing settings, save the Slack bot token, app-level token, and user ID.
- Click
Test Connection, then set the provider toSlackand save.
BackPing opens a DM with your user and only accepts messages or button clicks from that Slack user ID.
For Slack, each agent question is a parent DM message. Answer by replying in that message thread, or use the choice buttons. Top-level DM replies are not used to answer questions, which keeps concurrent requests easier to follow.
Agent MCP Setup
In BackPing settings, use the two buttons in Connect Agents:
Copy MCP Config: paste this into the user-level MCP config for your agent client. Use user-level config so the same BackPing server is available across parallel sessions and desktop/CLI variants.Copy Agent Memory Instruction: paste this into Codex memory, Claude memory, personal instructions, or a user-level agent instruction file so agents remember to install BackPing in the user-level MCP config and use it only when you are unavailable and a decision would otherwise block progress.Launch at login: enable this if you want BackPing to start automatically after a computer restart or sign-in. It starts quietly in the tray/menu bar without opening settings.
Example:
[mcp_servers.backping]
url = "http://127.0.0.1:47832/mcp"
tool_timeout_sec = 1800
enabled = true
[mcp_servers.backping.http_headers]
Authorization = "Bearer LOCAL_TOKEN"
Agent memory instruction:
Remember this for future work:
BackPing should be installed as a user/global MCP server using BackPing's copied MCP config, not only in project-local or current-session config. Configure it at the user level for whichever MCP client is being used so it is available across parallel sessions and desktop/CLI variants.
Behavior rule:
Use BackPing (`mcp__backping__.ask_user` / `backping.ask_user`) whenever I am unavailable, away from keyboard, or explicitly ask you to wait and ask me later. Availability signals include lunch, dinner, AFK, away from keyboard, going out, commuting, in a meeting, stepping away, or "wait then ask me".
If I am actively present in the current interactive session, ask there instead of using BackPing.
Use `ask_user` in `wait` mode when my answer blocks progress. Use `async` mode when the task can continue or when I simply asked to be asked later. Do not just sleep and post the question in chat when I said I am away.
When using BackPing:
- Keep the question concise.
- Include the current working directory in the `cwd` field when relevant.
- Explain the decision needed in the `context` field.
- Provide choices when possible.
- Avoid sensitive details unless required.
- If BackPing is unavailable, say so in chat and leave the question there as fallback.
MCP Tools
BackPing exposes these tools:
ask_user: ask a question and optionally wait for the answer.notify_user: send a one-way message.get_status: return BackPing status.list_pending_requests: show pending requests.cancel_request: cancel a pending request.
ask_user accepts:
{
"question": "Should I update the migration or adjust the fixture?",
"cwd": "/Users/you/Workspace/example",
"agent": "Agent",
"context": "The current test failure can be fixed in either place.",
"choices": ["Update migration", "Adjust fixture", "Stop and wait"],
"timeout_seconds": 1800,
"mode": "wait"
}
Manual Test Path
- Run
npm run dev. - Configure Telegram or Slack in settings.
- Set the active provider and save.
- Copy the MCP config from settings into your user-level agent/MCP client config.
- Ask an MCP-capable agent to call
backping.ask_userwith the currentcwd. - Answer in Telegram, or answer in the Slack question thread.
- Confirm the MCP call returns and the agent continues.
To test concurrent requests, start two MCP calls before answering either one. In Telegram, reply to each question message or use the inline buttons. In Slack, answer in each question thread or use the buttons.
Packaging Notes
npm run dmg creates an unsigned DMG. This is fine for local testing and small-team sharing, but macOS may show a Gatekeeper warning on first launch, especially on another Mac. Use right-click, then Open, for trusted builds.
npm run package:win creates an unsigned Windows installer from macOS via electron-builder, plus BackPing-latest-windows-x64.exe for stable release downloads. Windows may show SmartScreen warnings for unsigned builds, and each Windows build should be tested on a real Windows machine or VM before sharing widely.
A smoother external install would require Developer ID signing and notarization, but that is intentionally outside V1.
GitHub Pages
The static project site lives in docs/. To publish it, push the repository to GitHub, open repository settings, enable Pages from the main branch, and choose /docs as the source folder.
Security Model
BackPing is intentionally narrow:
- It binds MCP only to
127.0.0.1. - It requires a local bearer token for MCP calls.
- It stores Telegram and Slack tokens in Electron
safeStorage-backed local secret storage. - It only accepts Telegram messages from the chat that completed
/start. - It only accepts Slack messages and interactions from the configured Slack user ID.
- It never opens a shell, PTY, or job runner.
- It does not provide remote terminal control.
Keep Telegram and Slack tokens private.
Related Skills
Agent-Reach
85.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.8kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.3k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
CowAgent
47.1kOpen-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-agent, multi-model, multi-channel. Lightweight, extensible, one-line install.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
