inansen/hangfire-mcp
MCP server for managing Hangfire background jobs from VS Code Copilot
Platform-specific configuration:
{
"mcpServers": {
"hangfire-mcp": {
"command": "npx",
"args": [
"-y",
"hangfire-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://opensource.org/licenses/MIT) [](https://www.python.org/downloads/) [](https://pypi.org/project/hangfire-mcp/)
A Model Context Protocol (MCP) server for managing Hangfire background jobs directly from VS Code Copilot and other MCP-compatible clients. Monitor job queues, retry failed jobs, manage recurring tasks, and view real-time statistics — all without leaving your editor.
# Clone the repo
git clone https://github.com/inansen/hangfire-mcp.git
cd hangfire-mcp
# Run cross-platform setup (Windows, macOS, Linux)
python setup.py
The setup script will:
.vscode/mcp.json)
pip install hangfire-mcp
Or with uvx:
uvx hangfire-mcp
Add to your VS Code settings (settings.json):
{
"mcp": {
"servers": {
"hangfire-mcp": {
"command": "uvx",
"args": ["hangfire-mcp", "--workspace", "${workspaceFolder}"]
}
}
}
}
Loading reviews...