MCP Hub
Back to servers

delega

Task management API for AI agents. Create, delegate, and track tasks via MCP.

Registryglama
Forks
1
Updated
Mar 14, 2026

Quick Install

npx -y @delega-dev/mcp

delega-mcp

MCP server for Delega — task infrastructure for AI agents.

Connect any MCP-compatible client (Claude Desktop, Cursor, Windsurf, etc.) to your Delega instance and manage tasks, projects, and agents through natural language.

Install

npm install -g delega-mcp

Configure

Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):

{
  "mcpServers": {
    "delega": {
      "command": "@delega-dev/mcp",
      "env": {
        "DELEGA_API_URL": "http://127.0.0.1:18890",
        "DELEGA_AGENT_KEY": "dlg_your_agent_key_here"
      }
    }
  }
}

Environment Variables

VariableDefaultDescription
DELEGA_API_URLhttp://127.0.0.1:18890Delega API endpoint
DELEGA_AGENT_KEY(none)Agent API key for authenticated requests
DELEGA_REVEAL_AGENT_KEYS0Set to 1 only if you want MCP tool output to print full agent API keys

For the hosted tier, use https://api.delega.dev as the URL.

Security Notes

  • Non-local DELEGA_API_URL values must use https://.
  • Agent keys are passed through environment variables rather than command-line arguments, which avoids process-list leakage.
  • MCP tool output redacts full agent API keys by default. Set DELEGA_REVEAL_AGENT_KEYS=1 only when you explicitly want them printed back to the client.

Tools

ToolDescription
list_tasksList tasks, filter by project, label, due date, completion
get_taskGet full task details including subtasks
create_taskCreate a new task
update_taskUpdate task fields
complete_taskMark a task as completed
delete_taskDelete a task permanently
add_commentAdd a comment to a task
list_projectsList all projects
get_statsGet task statistics
list_agentsList registered agents
register_agentRegister a new agent (returns API key)

Self-Hosted vs Hosted

Self-hosted (free): Run your own Delega instance, point DELEGA_API_URL at it.

Hosted: Use https://api.delega.dev — free up to 1,000 tasks/month.

Links

License

MIT

Reviews

No reviews yet

Sign in to write a review