Task management API for AI agents. Create, delegate, and track tasks via MCP.
MCPpedia last refreshed this data
io.github.delega-dev/delega is an MCP server that task management API for AI agents. Create, delegate, and track tasks via MCP. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 85/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"delega": {
"env": {
"DELEGA_API_URL": "http://127.0.0.1:18890",
"DELEGA_AGENT_KEY": "dlg_your_agent_key_here"
},
"args": [
"-y",
"@delega-dev/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Delega — task infrastructure for AI agents.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@delega-dev/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @delega-dev/mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
MCP server for monday.com integration.
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
Give AI agents access to your Obsidian vault via local files or Self-hosted LiveSync.
🧠 An adaptation of the MCP Sequential Thinking Server to guide tool usage. This server provides recommendations for which MCP tools would be most effective at each stage.
MCP Security Weekly
Get CVE alerts and security updates for io.github.delega-dev/delega and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Maintenance status: Delega’s public hosted service retired on July 28, 2026. This client remains public as a verifiable engineering artifact and for Ryan McMillan’s existing private deployment. New public accounts and hosted access are not available. See the case study.
MCP server for Delega — a production task-coordination system for AI agents.
The package is maintained only where Ryan’s private operational use requires it. The default hosted endpoint accepts existing owner credentials only.
npm install -g @delega-dev/mcp
Add to your MCP client config (e.g. Claude Code claude_code_config.json):
{
"mcpServers": {
"delega": {
"command": "npx",
"args": ["-y", "@delega-dev/mcp"],
"env": {
"DELEGA_API_URL": "https://api.delega.dev",
"DELEGA_AGENT_KEY": "dlg_your_agent_key_here"
}
}
}
}
| Variable | Default | Description |
|---|---|---|
DELEGA_API_URL | https://api.delega.dev | Delega API endpoint. The default is Ryan McMillan’s owner-only private runtime; custom /api-style endpoints (e.g. http://localhost:18890) are an advanced override. |
DELEGA_AGENT_KEY | (none) | Agent API key for authenticated requests. Preferred for MCP configs; if both key env vars are set, this one wins. |
DELEGA_API_KEY | (none) | Fallback alias accepted so the MCP, CLI, and SDK can share one env var when needed. |
DELEGA_DEBUG | 0 | Development/troubleshooting only. Set to 1 to include raw API error response bodies in MCP server stderr logs. Leave disabled when logs may contain submitted task fields or internal API detail. |
DELEGA_REVEAL_AGENT_KEYS | 0 | ⚠️ Development only. Set to 1 to print full API keys in tool output. Never enable in production: a prompt-injected agent could exfiltrate keys from register_agent or list_agents responses. |
DELEGA_REVEAL_WEBHOOK_SECRETS | 0 | ⚠️ Development only. Set to 1 to print newly created webhook or ingress signing secrets in full. Leave disabled when transcripts or tool output may be retained. |
Existing owner agents use https://api.delega.dev. This is not a public onboarding endpoint.
Read-only API calls retry transient network failures up to three attempts within
a single 35-second deadline. Mutating calls (POST, PUT, and DELETE) are
never retried automatically, which avoids duplicating a write when the server
may have accepted it before the connection failed. Non-successful HTTP
responses are surfaced immediately without retrying.
DELEGA_API_URL values must use https://.DELEGA_REVEAL_AGENT_KEYS=1 in production. This flag exists for initial setup only. In production, a prompt-injected agent could exfiltrate keys from register_agent or list_agents tool output. Keys are returned once at creation time; register a replacement agent if you need a new key.| Tool | Description |
|---|---|
list_tasks | List tasks, filter by project, label, due date, completion, or claim status |
get_task | Get full task details including subtasks and task links |
link_task | Attach a branch, commit, PR, or URL link to a task |