Server data from the Official MCP Registry
Expose the 5dive agent-fleet CLI (tasks, agents, digest) as stdio MCP tools.
Expose the 5dive agent-fleet CLI (tasks, agents, digest) as stdio MCP tools.
This is a well-designed MCP adapter for the 5dive CLI with strong security fundamentals. The server uses `execFile` with argv array passing (not shell interpretation), implements proper input validation for flag-injection attacks, and correctly delegates authentication to the underlying 5dive CLI. Minor code quality issues around error handling and environment variable validation do not materially impact security. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.
4 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: FIVEDIVE_SUDO
Environment variable: FIVEDIVE_BIN
Environment variable: FIVEDIVE_TIMEOUT_MS
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-5dive-ai-5dive-mcp": {
"env": {
"FIVEDIVE_BIN": "your-fivedive-bin-here",
"FIVEDIVE_SUDO": "your-fivedive-sudo-here",
"FIVEDIVE_TIMEOUT_MS": "your-fivedive-timeout-ms-here"
},
"args": [
"-y",
"@5dive/mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol (stdio) server that exposes the 5dive agent-fleet CLI as MCP tools. Point any MCP client (Claude Desktop, Cursor, Cline, or your own) at it to file tasks, inspect and message agents, and read the fleet digest from inside a model context.
It is a thin, honest adapter: every tool shells out to the local 5dive binary's
machine-readable --json surface and returns the result. The CLI does all the
real work, so the server inherits its auth, permissions, and audit log for free.
| Tool | Wraps | What it does |
|---|---|---|
task_create | 5dive task add | File a task in the shared queue (title, body, priority, assignee, parent). |
task_show | 5dive task show | Full detail for one task by id (status, body, result, subtasks, blockers). |
task_list | 5dive task ls | List tasks (open by default; filter by status / assignee). |
agent_send | 5dive agent send | Send a message to another agent on the fleet. |
agent_list | 5dive agent list | List every agent: type, channels, model, live state. |
digest_get | 5dive digest | Fleet daily standup digest (window: "7d" for the weekly view). |
5dive CLI installed and on PATH (curl https://install.5dive.com | sudo bash).npx @5dive/mcp # run directly
# or
npm i -g @5dive/mcp && 5dive-mcp
{
"mcpServers": {
"5dive": {
"command": "npx",
"args": ["-y", "@5dive/mcp"],
"env": { "FIVEDIVE_SUDO": "1" }
}
}
}
| Var | Default | Purpose |
|---|---|---|
FIVEDIVE_BIN | 5dive | Path to the 5dive binary. |
FIVEDIVE_SUDO | (unset) | Set to 1 to prefix calls with sudo. Managed 5dive boxes require root for most subcommands; leave unset if you already run as root. |
FIVEDIVE_TIMEOUT_MS | 30000 | Per-call timeout in milliseconds. |
Arguments are passed to the CLI as an argv array with no shell, so tool input can never be interpreted as shell syntax. The server never sees secrets: the CLI reads its own credentials from the box.
This mirrors a curated slice of the CLI (tasks, agents, digest), not its full
surface. It is a distribution and convenience layer, not a new API. For
everything else, use the 5dive CLI directly (5dive --help).
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.