Swarmtask MCP Server

A powerful MCP (Model Context Protocol) server that enables **parallel execution of shell commands** through AI assistants like Claude Code.

Local serverstdioGo

What is the Swarmtask MCP server?

A powerful MCP (Model Context Protocol) server that enables parallel execution of shell commands through AI assistants like Claude Code. SwarmTask allows you to submit multiple tasks (system commands, scripts, builds, tests) that run. Exposed over MCP by the swarmtask mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

  • 🚀 Async Task Execution - Submit tasks and get immediate batch ID
  • Goroutine-based Processing - Parallel task execution with channels
  • 📊 Real-time Status Tracking - Poll for progress and results
  • 🔗 MCP Protocol Compliant - Integrates with Claude Code via supergateway
  • 📈 Progress Notifications - Streaming updates during execution

Its toolset

Everything the assistant can do here goes through one of these:

  • submit_tasks — 🆔 Batch ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890 📋 Task Count: 4 parallel goroutines 🏷️ Task Names: list_home, ping_test, disk_usage, system_info
  • check_status — 🆔 Batch ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890 📈 Overall Progress: 75.0% 🔄 Status: running

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

When to reach for it

Plenty of planning and project tracking servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Swarmtask's toolset — submit_tasks, check_status — is a fair guide to whether it matches your workflow. It is maintained by rdhillbb; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the swarmtask mcp server does with a few real requests.

Available tools

ToolWhat it does
submit_tasks🆔 Batch ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890 📋 Task Count: 4 parallel goroutines 🏷️ Task Names: list_home, ping_test, disk_usage, system_info 📊 Status: submitted (starting execution) ⏱️ Started: 14:30:22
check_status🆔 Batch ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890 📈 Overall Progress: 75.0% 🔄 Status: running

Example prompts to try

  • Use Swarmtask to submit tasks.
  • Use Swarmtask to check status.

Frequently asked questions

It connects Swarmtask to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (submit_tasks, check_status) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Swarmtask directly.