dispatch-mcp
A security-constrained MCP server that provides tools to dispatch tasks to allowlisted repositories and retrieve their status or results, preventing arbitrary command execution.
README
dispatch-mcp
dispatch-mcp is a small, security-constrained Model Context
Protocol server that exposes exactly one
capability as typed tools: dispatch a unit of work to an allowlisted
org-user/repo lane. It turns the "dispatch a task" call that previously lived
as ad-hoc shell out of a skill into constrained, audited tools.
The dispatch methodology — which tier to use, how to brief a lane, how to
verify the artifact — stays in the dispatch-lane skill. This server is only
the call, deliberately narrow so it can be exposed safely.
Tools
| Tool | Purpose |
|---|---|
dispatch_unit(orguser, repo, task_description) |
Dispatch a unit of work to an allowlisted lane; returns a handle. |
dispatch_status(handle) |
Structured status of a dispatched handle. |
dispatch_result(handle) |
Structured result (exit code + detail) for a handle. |
dispatch_list() |
Every dispatch launched this session. |
Security model
This server is built so that exposing it does not expose arbitrary command execution. The properties below are enforced in code and covered by tests.
- No arbitrary exec. There is no
run_shell/exectool. The only thing a caller can do is dispatch a unit of work; the command that runs is fixed by the server, never chosen by the caller. - Allowlist, not free-form targets.
orguserandrepomust resolve against a config built from the.repos.jsonshape (orgs+repos). An unknown repo, an unknown org-user, or a repo not owned by the named org-user is rejected before anything runs. There is no wildcard. - No shell injection. The
task_descriptionis passed to the dispatch command as a single argument-vector element (shell=False); it is data, never interpolated into a shell string. Shell metacharacters in it are inert. - No embedded credentials. Nothing in this package stores a token or key.
The org-user's identity (SSH key /
GH_TOKEN) is resolved by the runtime when the dispatch process runs as that user. - Audit everything. Every dispatch appends a structured record
(
who/what/when/handle/argv/outcome) to an audit sink.
Deliberate omissions
If a safe design was not feasible for some richer capability, the safe subset ships and the capability is omitted rather than adding an unsafe escape hatch:
- No tool lets the caller supply or override the executed command.
- No tool returns or accepts credentials.
- Live status is reported from the server's in-session record; the durable record of a running lane lives in that lane's own state files (read those for authoritative long-lived status), not via a shell passthrough here.
Configuration (environment, resolved at call time)
| Variable | Effect |
|---|---|
DISPATCH_REPOS_JSON |
Path to the allowlist (.repos.json shape). Default ~/.repos.json. |
DISPATCH_SSH_HOST |
Host the fixed dispatch template targets. Default localhost. |
DISPATCH_MAX_ITERATIONS |
Max iterations passed to the dispatch lane. Default 50. |
DISPATCH_TIMEOUT |
Seconds to wait for the dispatch command to return. Default 60. |
No credentials are read from the environment by this server; identity is the runtime user's.
Install
Run directly from GitHub with the MCP extra:
uvx --from "git+https://github.com/selamy-labs/dispatch-mcp@v0.1.0#egg=dispatch-mcp[mcp]" dispatch-mcp
Or with pipx:
pipx install "dispatch-mcp[mcp] @ git+https://github.com/selamy-labs/dispatch-mcp@v0.1.0"
MCP client config
{
"mcpServers": {
"dispatch": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/selamy-labs/dispatch-mcp@v0.1.0#egg=dispatch-mcp[mcp]",
"dispatch-mcp"
],
"env": {
"DISPATCH_REPOS_JSON": "/home/you/.repos.json",
"DISPATCH_SSH_HOST": "localhost"
}
}
}
}
Architecture
The dispatch logic lives once in dispatch_mcp.core.Dispatcher; the MCP server
in dispatch_mcp.mcp_server is a thin wrapper that serialises structured
results to JSON and maps expected failures to ToolError. All process execution
goes through an injected transport (dispatch_mcp.transport) that runs a
fixed argument vector with shell=False, and all timing through an injected
clock, so the full validate / template / audit path is exercised offline in
tests with a fake transport — no ssh, no tmux, no network. The default
SubprocessTransport uses only the standard library, so the core package has
zero runtime dependencies; the mcp SDK is an optional extra needed only to run
the server.
Development
python -m pip install -e ".[test]"
ruff format --check .
ruff check .
coverage run -m pytest
coverage report --fail-under=95
License
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。