CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
jarmstrong158 avatar

Conductor

jarmstrong158/conductor
authSTDIOregistry active
Summary

Gives Claude direct control over a local task scheduler with 21 tools for creating workers, building multi-step chains, and reading execution logs. You can ask Claude to schedule a nightly backup script, wire up email reports through Gmail, or diagnose why a task keeps failing by pulling error logs from the last ten runs. Built on APScheduler and Flask with a web dashboard at localhost:5000, backed by SQLite and Redis. Supports Python, batch, and shell scripts with cron scheduling, parallel execution stages, per-worker environment variables, and templated tasks like folder watchers and uptime monitors. Auto-registers itself in Claude Desktop's MCP config on first launch. Useful when you want conversational control over local automation without clicking through a dashboard.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

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+
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

.\build.bat

Forces a full rebuild:

.\build.bat --rebuild

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

Task File Format

Python (.py)

Scripts run as subprocesses:

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.

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

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:

ANTHROPIC_API_KEY=sk-ant-...

Example — before / after:

Raw error in the debug log:

[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):

The script is failing on a find_element call before the page has finished loading — Selenium is racing the DOM. The element #report-table is rendered after an XHR completes. Two fixes, in order of preference:

  1. Wrap the lookup in a WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.ID, "report-table"))) so it polls until the element exists.
  2. If you don't want to import the wait helpers, a time.sleep(2) before the click will work but is brittle. The traceback shows this happened on the first run after a ShipExec UI change yesterday — they may have also renamed the element. Verify the ID is still report-table in DevTools before adding the wait.

Email Setup

Click 📧 Email in the header to configure Gmail credentials. Requires a Gmail App Password (2-Step Verification must be enabled first). Credentials are stored locally in .env and never transmitted except to Gmail's SMTP server.

Once configured, all templates and worker notifications can send email.

API

MethodPathPurpose
GET/api/workersList all workers
POST/api/workersRegister worker(s)
PUT/api/workers/<id>Update worker
POST/api/workers/<id>/pauseToggle pause/resume
POST/api/workers/<id>/run-nowFire immediately
GET/api/workers/<id>/historyRun history
POST/api/workers/<id>/assign-groupAssign to group
DELETE/api/workers/<id>Delete worker
POST/api/workers/pause-allPause all workers
DELETE/api/workers/allDelete all workers
GET/api/chainsList all chains
POST/api/chainsCreate chain
PUT/api/chains/<id>Update chain
POST/api/chains/<id>/pauseToggle pause/resume
POST/api/chains/<id>/run-nowFire immediately
GET/api/chains/<id>/historyRun history
DELETE/api/chains/<id>Delete chain
GET/api/groupsList groups
POST/api/groupsCreate group
DELETE/api/groups/<id>Delete group
GET/api/profilesList profiles
POST/api/profilesSave profile
GET/api/profiles/<id>Load profile
DELETE/api/profiles/<id>Delete profile
POST/api/templatesCreate from template
GET/api/exportExport all as JSON
POST/api/importImport from JSON
GET/POST/api/email-settingsEmail configuration
GET/api/service/statusAuto-start status
POST/api/service/installInstall auto-start
POST/api/service/uninstallRemove auto-start
GET/api/update-checkCheck for updates
GET/api/logs?since=NLog entries
GET/api/statusScheduler + database status
GET/api/browse?mode=file|dirNative file picker

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

GMAIL_USER

Gmail address for sending email notifications

GMAIL_APP_PASSWORDsecret

Gmail App Password for sending email notifications

Categories
Productivity & Office
Registryactive
Packageconductor-mcpserver
TransportSTDIO
AuthRequired
UpdatedApr 8, 2026
View on GitHub

More from jarmstrong158

  • Context Keeper
  • Skillmatch Mcp1

Related Productivity & Office MCP Servers

View all →
jarvisonm4 avatar
Report Needs MCP Server

jarvisonm4/report-needs

MCP server for AI agents to report infrastructure needs they encounter during task execution
kirrrr-2423 avatar
ShapeWords MCP

kirrrr-2423/shapewords-mcp

Generate ShapeWords word clouds as SVG, PNG, or JSON from text or weighted words.
kulkarnianirudha8 avatar
byteaskai

kulkarnianirudha8/byteaskai

# ByteAsk Embedded Docs MCP Page-cited retrieval over embedded systems documentation, datasheets, reference manuals, RTOS documentation, coding standards, and firmware engineering references for AI coding agents. **Registry Namespace:** `ai.byteask/embedded-docs` **Endpoint:** `https://mcp.byteask.ai/mcp` **Documentation:** https://docs.byteask.ai/embedded **GitHub:** https://github.com/ByteAsk/ByteAsk-Embedded-MCP --- # Why This MCP Exists Modern AI coding agents are excellent at generating code, but often struggle when working with vendor-specific embedded documentation, hardware reference manuals, firmware SDKs, and coding standards. Embedded engineers routinely need answers from: * STM32 Reference Manuals * ARM Cortex-M Technical Reference Manuals * CMSIS Documentation * FreeRTOS Documentation * Zephyr Documentation * ESP-IDF Documentation * Nordic SDK Documentation * NXP Documentation * MISRA C * MISRA C++ * AUTOSAR * Device Datasheets * Vendor Application Notes Searching these sources manually can require navigating hundreds or thousands of pages of documentation. ByteAsk Embedded Docs MCP gives AI coding agents direct access to these references and returns page-cited answers grounded in source documentation. --- # Features ## Page-Cited Retrieval Every answer is grounded in source documentation with citations to the original reference. This enables engineers to verify claims directly against vendor documentation. --- ## Documentation Search Search across embedded and firmware engineering references. Examples: * Peripheral configuration * Register descriptions * DMA setup * Interrupt handling * Clock configuration * RTOS APIs * MISRA compliance questions * ARM architecture details --- ## Agent-Native Works directly with MCP-compatible tools including: * Claude Code * Claude Desktop * Cursor * Windsurf * VS Code MCP Clients * GitHub Copilot MCP * Any MCP-compatible agent --- ## Remote Hosted No indexing, crawling, or local setup required. The server is hosted by ByteAsk and continuously updated. --- # Example Prompts ## STM32 ```text Find the STM32H7 Ethernet DMA initialization sequence. ``` ```text Show the documentation for STM32 timer input capture. ``` ```text Find the register definition for RCC clock configuration. ``` --- ## ARM Cortex-M ```text Explain NVIC interrupt priority configuration on Cortex-M4. ``` ```text Find documentation for SysTick configuration. ``` ```text Show Cortex-M exception handling behavior. ``` --- ## CMSIS ```text Find the CMSIS documentation for NVIC_SetPriority. ``` ```text Show CMSIS APIs related to interrupt control. ``` --- ## FreeRTOS ```text Find documentation for task notifications. ``` ```text Compare queues and task notifications in FreeRTOS. ``` ```text Show examples of FreeRTOS software timers. ``` --- ## MISRA ```text Find MISRA C rules related to pointer arithmetic. ``` ```text Show MISRA C++ guidance on exception handling. ``` ```text Find rules regarding dynamic memory allocation. ``` --- ## Zephyr ```text Find Zephyr GPIO driver documentation. ``` ```text Show examples of Zephyr work queues. ``` ```text Explain Zephyr device tree configuration. ``` --- # Supported Knowledge Domains ## Embedded Systems * Microcontrollers * SoCs * Device Drivers * Peripherals * DMA * Interrupts * Timers * GPIO * UART * SPI * I2C * CAN * Ethernet * USB ## Firmware Engineering * RTOS Development * Bare-Metal Development * Bootloaders * Hardware Abstraction Layers * Embedded Networking * Memory Management ## Documentation Sources * Reference Manuals * Datasheets * SDK Documentation * Application Notes * Programming Manuals * Technical Reference Manuals * Architecture Specifications ## Coding Standards * MISRA C * MISRA C++ * AUTOSAR * Embedded Best Practices --- # Installation Use the MCP endpoint: ```text https://mcp.byteask.ai/mcp ``` Refer to the documentation for client-specific installation instructions: https://docs.byteask.ai/embedded --- # Example Workflow Engineer asks: ```text How do I configure Ethernet DMA on STM32H7? ``` Agent: 1. Queries ByteAsk Embedded Docs MCP 2. Retrieves relevant documentation sections 3. Produces a grounded answer 4. Includes citations to the source material Result: * Faster debugging * Fewer hallucinations * Traceable answers * Direct access to source references --- # Ideal Users * Embedded Software Engineers * Firmware Engineers * RTOS Developers * Automotive Software Engineers * Safety-Critical Software Teams * Embedded AI Engineers * Hardware Bring-Up Teams * BSP Developers * Driver Developers * Platform Engineers --- # About ByteAsk ByteAsk builds citation-backed retrieval systems for high-value technical knowledge. The Embedded Docs MCP provides page-cited access to embedded and firmware engineering documentation directly inside AI coding workflows. Documentation: https://docs.byteask.ai/embedded GitHub: https://github.com/ByteAsk/ByteAsk-Embedded-MCP Registry: ai.byteask/embedded-docs
lakshgk avatar
Distill Mcp

lakshgk/distill-mcp

Convert PDF, DOCX, XLSX, PPTX, HTML, audio to token-efficient Markdown for any MCP client.
live.alpic.doing-v2-d5286fe8 avatar
doing

live.alpic.doing-v2-d5286fe8/doing

simple task manager for your LLM
live.alpic.tasks-example-ca49f0f6 avatar
Tasks Example

live.alpic.tasks-example-ca49f0f6/tasks-example

A test MCP server for task management