Minimal stdio MCP server for parallel task execution by AI agents.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
AgentTasker is a small, stdio-only MCP server for AI agents that need to run multiple tasks quickly and get structured results back in one call.
It is intentionally narrow:
execute and execute_batchdepends_onRepository: https://github.com/S3bRR/agent-tasker-mcp
Most agent orchestration layers are heavier than they need to be. This project is designed for the common case:
There is no queue service, no persistence layer, no background worker system, and no SDK dependency required at runtime.
Task types:
python_codehttp_requestdiscovery_searchweb_scrapeshell_commandfile_readfile_writePublic MCP tools:
executeexecute_batchRequirements:
uvxRun directly from GitHub:
Once the package is live on PyPI, the command becomes:
pipxInstall directly from GitHub:
Once the package is live on PyPI, the command becomes:
setup.sh creates a local .venv, installs this package into it, and prints an
absolute MCP config snippet. If python3 -m venv is not available, it falls back
to virtualenv when installed.
Use the exact absolute path printed by ./setup.sh for local checkouts.
executeRun one task immediately.
execute_batchRun multiple tasks concurrently.
depends_onIf one task must wait for another, make it explicit.
If an upstream dependency fails, downstream tasks are marked failed and do not run.
output_mode supports:
compact (default)fullThe response is ordered to match the input task list, which makes it easier for models to consume without extra reconciliation logic.
Releases are tag-driven.
pyproject.toml and server.json to the same versionmainv1.0.0server.json to the MCP RegistryThe release workflow rejects version drift: the pushed tag, pyproject.toml, and server.json must match exactly.
Optional environment variables:
AGENT_TASKER_MAX_TASKS: maximum tasks per execute_batchAGENT_TASKER_MAX_PAYLOAD_BYTES: maximum payload size per taskAGENT_TASKER_MAX_MEMORY_MB: soft process memory guardThis server is intended for trusted environments.
python_code executes Python codeshell_command executes shell commandsfile_read and file_write operate on the local filesystemDo not expose this server directly to untrusted users.
Create a local environment:
Run the server:
Run tests:
This repo includes server.json for MCP Registry publication and a GitHub Actions workflow that publishes both the PyPI package and MCP metadata from a version tag.
MIT
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/agenttasker-mcp-server)<a href="https://allmcps.com/mcp/agenttasker-mcp-server"><img src="https://allmcps.com/api/badge/agenttasker-mcp-server?style=directory" alt="AgentTasker MCP Server on AllMCPs" /></a>