io.github.RohitYajee8076/backburner
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@io.github.RohitYajee8076/backburnerrun npm test in background"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Put your AI agent's slow work on the back burner. Keep cooking.
Background Tasks β¦ Zero Infrastructure β¦ Survives Restarts β¦ Windows & Unix
π¦ PyPI β’ ποΈ MCP Registry β’ π Issues β’ π MIT
π’ Updates
v0.2.1 β output with non-ASCII characters (β, emoji, any non-English text) no longer crashes tasks on Windows.
v0.2.0 β
exit_codeis no longer reported for cancelled/timed-out tasks (it was an artifact of the kill, not a real result); new animated demo below.v0.1.x β first release: 5 tools, task timeouts, command allow/deny policy. Listed on the official MCP Registry as
io.github.RohitYajee8076/backburner.
backburner is an MCP server that gives any AI assistant (Claude, and any
other MCP client) the ability to run long shell commands as background
tasks β start a test suite, a build, a scrape, a batch job β then keep
working and check back for the results, instead of sitting frozen until
it finishes.

Related MCP server: Background Process MCP
π₯ Why
AI agents are bad at waiting. A tool call that takes 10 minutes blocks the
whole conversation β or times out and loses the work entirely. The MCP
specification is formalizing a Tasks pattern for exactly this problem
(extension finalized in the 2026-07-28 spec release); backburner brings
that workflow to every client today via plain tools, with first-class
Tasks-extension support on the roadmap.
π§° Tools
Tool | What it does |
| Run a shell command in the background, returns a task id immediately |
|
|
| Captured output β works mid-run too, so you can peek at progress |
| Kill the task and its whole process tree |
| Recent tasks, newest first |
β¨ Features
Survives restarts β tasks are tracked in SQLite under
~/.backburner/; output is captured to per-task log files. If the server dies mid-task, orphaned tasks are honestly markedinterrupted, never silently lost.Real cancellation β kills the full process tree (worker processes included), on Windows and Unix.
Peek at live progress β
task_resulton a running task returns the output so far.Timeouts β pass
timeout_secondsand a runaway task is killed and honestly markedtimed_outinstead of hanging forever.Command policy β restrict what the AI may run with environment variables (regexes, comma-separated; deny always wins):
BACKBURNER_ALLOW="^pytest,^npm (test|run build)" # only these may run BACKBURNER_DENY="rm -rf,shutdown,format" # these never runZero infrastructure β stdlib only (SQLite, subprocess, threads). No Redis, no Celery, no Docker.
Tested β a pytest suite covers the full job lifecycle: completion, failure, cancellation, timeouts, crash recovery, and the command policy.
π Install
pip install backburner-mcpClaude Code
claude mcp add backburner -- python -m backburner.serverClaude Desktop / other clients
{
"mcpServers": {
"backburner": {
"command": "python",
"args": ["-m", "backburner.server"]
}
}
}π Security note
backburner executes the shell commands the AI sends it, with your user's
permissions. That is its job β but treat it like giving your agent a
terminal. Run it only with clients whose tool-use you review/approve,
prefer permission modes that require confirmation for start_task, and
use BACKBURNER_ALLOW / BACKBURNER_DENY to scope what may run.
πΊοΈ Roadmap
Task timeouts and max-runtime limits
Allowlist/denylist for commands
PyPI release β
pip install backburner-mcpListed on the official MCP Registry
MCP Tasks extension support (spec 2026-07-28) β native
tasks/get,tasks/cancelalongside the plain toolsLocal web dashboard β watch tasks live in the browser
Structured progress reporting (parse % / step markers from output)
π License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceEnables AI assistants to create and manage persistent terminal sessions that continue running even after disconnection, with features like smart output management, web UI visualization, and automatic bug fixing with Codex integration.Last updated114MIT
- Alicense-qualityDmaintenanceEnables LLMs to start, stop, and monitor long-running command-line processes in the background.Last updated2210MIT
- Flicense-qualityCmaintenanceEnables AI agents to efficiently manage and monitor background processes, with features like process startup, termination, log retrieval, and resource management.Last updated6
- Alicense-qualityBmaintenanceAn MCP server that allows AI assistants to manage background processes, enabling start, stop, monitoring, and querying of long-running shell commands without blocking the conversation.Last updatedMIT
Related MCP Connectors
Let AI operate servers without SSH. Choose actions, approve risky changes, and audit every step.
Reliable async execution for agent tool calls: schema gating, retries, idempotency, audit trail.
Persistent memory and cross-session learning for AI coding assistants (hosted remote MCP).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RohitYajee8076/backburner'
If you have feedback or need assistance with the MCP directory API, please join our Discord server