Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Conductor
Conductor logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 8:43:24 PM

Conductor

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Local task scheduler and worker manager with MCP integration for Claude Desktop.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "conductor": {
      "command": "npx",
      "args": [
        "-y",
        "conductor"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Tests License: MIT

Conductor

Claude's hands for local automation β€” with a web dashboard for the humans who watch it.

Conductor gives Claude direct, persistent control of a local task runner. Tell Claude what you want automated; it creates the scheduled workers, builds multi-step pipelines, wires up email reports, fires test runs, and reads back the logs when something fails β€” all through conversation. A web dashboard at 127.0.0.1:5000 runs alongside it for humans who want to peek at status, click pause, or hand-edit a worker.

Originally built to automate warehouse reporting workflows (the daily ShipExec metrics pull) and now general-purpose: any Python / batch / shell script, any schedule, any chain.

The MCP server lives in this repo (server.py) β€” the thin layer that exposes Conductor's REST API as Claude tools. It's bundled and auto-registered on install, so most users won't need to touch it directly. The separate conductor-mcp repo is deprecated β€” it holds an older copy without the auto-launch race protection.

Conductor Dashboard

Claude Integration

Conductor registers itself as an MCP server in Claude Desktop on first launch. After restarting Claude Desktop once, Claude has 21 tools for full control:

Example conversation:

You: Run my metrics script every night at 8:30 PM and email me the report

Claude: I'll set that up using the Run + Email template. (creates the worker, configures the schedule, wires up Gmail, fires it to test) Done β€” worker "Daily Metrics Report" is live. Check your email for the test run.

You: That uptime check keeps failing. What's going on?

Claude: (pulls the last 10 runs, reads the error logs) The site returned a 503 three times in the last hour. The SSL certificate expired yesterday. Here's the full error from the last run...

You: Chain my backup script and cleanup script together. Run backup first, then cleanup after it finishes. Every day at 2 AM.

Claude: *(creates a chain with stage 0 = backup, stage 1 = cleanup, cron schedule "0 2 * * ") Chain "Nightly Maintenance" created with 2 steps. Backup runs first, cleanup runs after it succeeds.

How it works:

  1. Install Conductor (Windows installer or from source)
  2. Conductor writes its MCP entry to Claude Desktop's config on first launch
  3. Restart Claude Desktop once
  4. Claude now controls Conductor through natural language β€” create workers, build chains, fire tasks, check logs, send emails

Features

  • Claude-Controlled β€” 21 MCP tools let Claude create workers, chains, groups, templates, and more. Non-technical users can automate anything through conversation.
  • Flexible Scheduling β€” Fixed times (09:00, 14:30), intervals (2h 30m), or cron expressions (0 9 * * 1-5 with plain-English preview).
  • Task Support β€” Python (.py), batch (.bat, .cmd), and shell (.sh) scripts. Selenium and GUI scripts run in a visible terminal window via new_console.
  • Built-in Email β€” configure Gmail once, then any template or worker can send emails. Run + Email template for automated reports. Folder Watcher emails files on arrival. Uptime Check sends DOWN alerts. Worker notifications on success/failure.
  • Task Chains β€” multi-step pipelines with parallel execution. Same stage number = run in parallel. Stop-on-failure toggle.
  • Worker Groups β€” collapsible named groups for organization. Bulk pause/delete per group.
  • Run History β€” per-worker/chain history with status, duration, and error details. Colored dots show last run status at a glance.
  • Built-in Templates β€” Folder Backup, File Cleanup, Folder Watcher, Uptime Check, Open URL, Run + Email. Generated scripts are stdlib-only and self-contained.
  • Per-worker Environment Variables β€” inject KEY=VALUE pairs into subprocess environments.
  • Worker Timeout β€” kill and log workers that run over a set number of minutes.
  • Email Notifications β€” per-worker/chain email alerts: Always, On Failure, or On Success.
  • Import / Export β€” portable JSON snapshot of all workers, chains, and groups.
  • Saved Profiles β€” save and load named worker configurations.
  • Auto-start on Login β€” one-click Registry Run key install. No admin required.
  • Auto-update Check β€” modal dialog when a newer release is available.
  • System Tray Icon β€” right-click for Open Dashboard or Stop.
  • AI Error Analysis β€” send error logs to Claude for diagnosis directly in the dashboard.
  • Persistent State β€” SQLite database. Workers and chains restore on restart.

Add Workers Form

Add Workers form

Built-in Templates

Template picker modal

Task Chains

New Task Chain modal

Debug Log

Debug log panel

Installation (Windows)

Download and run Conductor_Setup.exe from the latest release.

  • Requires Python 3 on the machine (see note below) β€” Conductor runs your .py workers with it
  • Installs to %AppData%\Conductor β€” no admin/UAC required
  • Adds Start Menu shortcut and optional desktop shortcut
  • Optional auto-start at login
  • Uninstaller included

Python is required for Python workers. Conductor itself ships as a self-contained executable, but it runs your .py scripts with a real interpreter found on your system (the py launcher, PATH, or the Windows registry). If none is found, workers fail loudly with instructions β€” they are never reported as successful. Set CONDUCTOR_PYTHON to a full path to pin a specific interpreter. .bat / .cmd / .sh workers do not need Python.

Setup from Source

Requirements

  • Python 3.10+
bash
git clone https://github.com/jarmstrong158/conductor.git
cd conductor
pip install -r requirements.txt
python launch.py

The dashboard opens at http://127.0.0.1:5000. Press Ctrl+C to stop.

Building the Installer

Code
.\build.bat

Forces a full rebuild:

Code
.\build.bat --rebuild

Output: Output\Conductor_Setup.exe. Requires Inno Setup.

Task File Format

Python (.py)

Scripts run as subprocesses:

python
if __name__ == "__main__":
    print("Task executed!")

Batch / Shell (.bat, .sh, .cmd)

Executed as subprocesses. The worker's output directory (if set) is used as the working directory.

Schedule Formats

TypeFormatExample
FixedHH:MM or HH:MM,HH:MM09:00, 14:30, 17:00
IntervalXh Ym2h 30m, 1h, 45m
Cron5-field crontab0 9 * * 1-5 (weekdays at 9am)

Task Chains

Chains run multiple scripts in sequence. Each step has a stage number β€” steps with the same stage run in parallel, stages execute in order. Stop on failure halts the chain when any step fails.

Code
Stage 0: backup.py  ──┐
Stage 0: cleanup.py ───  (both run at once)
                      ↓
Stage 1: report.py    (runs after both finish)

Templates

TemplateWhat it doesEmail capability
Folder BackupCopy folder, keep N backupsSummary email
File CleanupDelete old files by patternSummary email
Folder WatcherMove/email files by extensionPer-rule: move, email, or both
Uptime CheckMonitor URL, log statusAlert email on DOWN
Open URLOpen URL in browserβ€”
Run + EmailRun script, email output fileSends output as attachment

All generated scripts use Python stdlib only.

Architecture

Code
conductor/
β”œβ”€β”€ launch.py          # Entry point β€” Flask, browser, tray, MCP registration
β”œβ”€β”€ app.py             # Flask backend + APScheduler + SQLite
β”œβ”€β”€ server.py          # MCP server for Claude Desktop
β”œβ”€β”€ CLAUDE.md          # Context file for Claude Code / Desktop
β”œβ”€β”€ static/
β”‚   └── index.html     # Frontend β€” HTML + CSS + JS (no frameworks)
β”œβ”€β”€ tasks/
β”‚   └── example_task.py
β”œβ”€β”€ templates/
β”‚   └── generated/     # Auto-generated template scripts
β”œβ”€β”€ build.bat          # One-click installer build
β”œβ”€β”€ build_icon.py      # Generates conductor.ico
β”œβ”€β”€ conductor.spec     # PyInstaller spec
β”œβ”€β”€ installer.iss      # Inno Setup script
└── conductor.db       # SQLite database (auto-created)
LayerTechnology
BackendPython 3, Flask
SchedulingAPScheduler (BackgroundScheduler + MemoryJobStore)
PersistenceSQLite (WAL mode)
FrontendVanilla JS, single HTML file
AI IntegrationClaude via MCP (21 tools) + Anthropic API (error analysis)

AI Error Analysis

The debug log includes an Analyze Errors button. When ERROR entries are present, click it to send them to Claude for diagnosis. Requires an Anthropic API key in .env:

Code
ANTHROPIC_API_KEY=sk-ant-...

Example β€” before / after:

Raw error in the debug log:

Code
[ERROR] worker "Daily Metrics Report" exit code 1
Traceback (most recent call last):
  File "C:\scripts\metrics.py", line 142, in <module>
    driver.find_element(By.ID, "report-table").click()
  File ".../selenium/.../webdriver.py", line 830, in find_element
    raise NoSuchElementException(message)
selenium.common.exceptions.NoSuchElementException: Message: no such element:
Unable to locate element: {"method":"css selector","selector":"[id="report-table"]"}

Claude's diagnosis (one click later):

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • Mindwtr logoMindwtr

    Local task and project automation for Mindwtr.

    πŸ’» Developer Tools0 views
    Compare vs Mindwtr β†’
  • T
    Tldraw

    Draw and visually collaborate with your agents on tldraw's canvas.

    πŸ’» Developer Tools0 views
    Compare vs Tldraw β†’
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Labelhead Artist Momentum logoLabelhead Artist Momentum

    Trending hip-hop artist momentum scores across four cultural dimensions.

    πŸ’» Developer Tools0 views
    Compare vs Labelhead Artist Momentum β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Conductor

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "conductor": { "command": "npx", "args": ["-y", "Conductor"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewConductor AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/conductor?style=directory)](https://allmcps.com/mcp/conductor)
HTML Embed
<a href="https://allmcps.com/mcp/conductor"><img src="https://allmcps.com/api/badge/conductor?style=directory" alt="Conductor on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
29Quality signal: Emerging Β· 29/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Conductor β†’Install in Claude DesktopInstall in CursorInstall in VS Code