Hangfire MCP Server
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., "@Hangfire MCP ServerShow me failed jobs"
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.
Hangfire MCP Server
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.
Features
Job Management: List, view, retry, delete, and requeue jobs
Recurring Jobs: List, view, trigger, pause, and resume recurring jobs
Statistics: View server stats, queues, and active servers
Auto-Discovery: Automatically finds connection strings from appsettings.json
Web Dashboard: Built-in web UI with real-time stats and job management
Quick Start (One-Click Setup)
# Clone the repo
git clone https://github.com/inansen/hangfire-mcp.git
cd hangfire-mcp
# Run cross-platform setup (Windows, macOS, Linux)
python setup.pyThe setup script will:
Create a virtual environment
Install all dependencies (including dashboard)
Prompt for your SQL Server connection string (or read from
.vscode/mcp.json)Create VS Code MCP configuration
Test the connection
Optionally start the dashboard
Installation
pip install hangfire-mcpOr with uvx:
uvx hangfire-mcpConfiguration
VS Code (Global Settings)
Add to your VS Code settings (settings.json):
{
"mcp": {
"servers": {
"hangfire-mcp": {
"command": "uvx",
"args": ["hangfire-mcp", "--workspace", "${workspaceFolder}"]
}
}
}
}VS Code (Per-Project)
Create .vscode/mcp.json in your project:
{
"servers": {
"hangfire-mcp": {
"command": "uvx",
"args": ["hangfire-mcp", "--workspace", "${workspaceFolder}"]
}
}
}With Explicit Connection String
Use ODBC-style connection strings:
{
"servers": {
"hangfire-mcp": {
"command": "python",
"args": ["-m", "hangfire_mcp", "--workspace", "${workspaceFolder}"],
"env": {
"HANGFIRE_CONNECTION_STRING": "Driver={ODBC Driver 17 for SQL Server};Server=localhost;Database=Hangfire;UID=sa;PWD=yourpassword;Encrypt=no;"
}
}
}
}Note: This project uses
pyodbcand requires ODBC-format connection strings, not ADO.NET format.
Connection String Discovery
The server finds connection strings in this priority order:
--connection-stringCLI argumentHANGFIRE_CONNECTION_STRINGenvironment variableAuto-discover from
${workspaceFolder}/**/appsettings*.jsonUser config at
~/.config/hangfire-mcp/connections.json(Linux/macOS) or%APPDATA%\hangfire-mcp\connections.json(Windows)Use the
configuretool to set it manually
Available Tools
Job Tools
Tool | Description |
| List jobs by state (Enqueued, Processing, Succeeded, Failed, etc.) |
| Get detailed job info including arguments and exception details |
| Get the state history of a job |
| Retry a failed job |
| Delete a job |
| Move a job back to queue |
Recurring Job Tools
Tool | Description |
| List all recurring jobs with cron schedules |
| Get recurring job details |
| Run a recurring job immediately |
| Pause scheduled executions |
| Resume a paused job |
Statistics Tools
Tool | Description |
| Server statistics (succeeded, failed, processing counts) |
| List queues with pending job counts |
| List active Hangfire servers |
Configuration Tool
Tool | Description |
| Set connection string for current workspace |
Usage Examples
In VS Code Copilot Chat:
User: Show me failed jobs
Agent: [calls list_jobs(state="Failed")]
Found 3 failed jobs:
| ID | State | Job Type | Created | Reason |
|----|-------|----------|---------|--------|
| 123 | Failed | OrderSyncJob.Execute | 2026-03-17 10:30 | Connection timeout |
| 124 | Failed | EmailJob.Send | 2026-03-17 10:45 | SMTP error |
User: Retry job 123
Agent: [calls retry_job(job_id=123)]
Job 123 has been requeued to 'default' queue.
User: When did CacheRefreshJob last run?
Agent: [calls get_recurring_job(job_id="CacheRefreshJob")]
Recurring Job: CacheRefreshJob
- Cron: 0 */5 * * * (every 5 minutes)
- Last Run: 2026-03-17 12:55:00
- Queue: default
User: Trigger CacheRefreshJob now
Agent: [calls trigger_recurring_job(job_id="CacheRefreshJob")]
CacheRefreshJob has been triggered. New job ID: 456Web Dashboard
The package includes a built-in web dashboard for visual job management.
Installation
pip install hangfire-mcp[dashboard]Running the Dashboard
# Windows
.\scripts\run-dashboard.ps1
# macOS / Linux
chmod +x scripts/run-dashboard.sh
./scripts/run-dashboard.sh
# Or manually (any platform)
export HANGFIRE_CONNECTION_STRING="Driver={ODBC Driver 17 for SQL Server};Server=localhost;Database=Hangfire;..."
python -m uvicorn hangfire_mcp.dashboard:app --host 127.0.0.1 --port 8080Open http://127.0.0.1:8080 in your browser.
Dashboard Features
Real-time Stats: Succeeded, Failed, Processing, Enqueued, Scheduled counts
Job List: View all jobs with filtering by state
Job Actions: Retry, Delete, View details with one click
Recurring Jobs: Pause, Resume, Trigger recurring jobs
Server Status: Online/Idle/Offline status based on heartbeat
Auto-refresh: Updates every 10 seconds
Requirements
Python 3.11+
SQL Server with Hangfire database
ODBC Driver 17 for SQL Server (or compatible)
Development
# Clone the repository
git clone https://github.com/inansen/hangfire-mcp.git
cd hangfire-mcp
# Install all dependencies
pip install -e ".[dev]"
# Run tests
pytestContributing
Fork the repository
Create a feature branch (
git checkout -b feature/my-feature)Commit your changes (
git commit -am 'Add my feature')Push to the branch (
git push origin feature/my-feature)Open a Pull Request
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.
Latest Blog Posts
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/inansen/hangfire-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server