Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Task Manager

БесплатноНе проверен

MCP server for Nova Agent progress reporting. Enables updating execution sessions and managing steps within tasks.

GitHubEmbed

Описание

MCP server for Nova Agent progress reporting. Enables updating execution sessions and managing steps within tasks.

README

Nova Agent progress reporting MCP server.

Installation

Method 1: Docker Installation (Recommended)

1. Build Docker Image

./build-docker.sh

2. Add to Claude Desktop

macOS/Windows:

claude mcp add task-manager -s user \
  --env "TASK_MANAGER_HOST=host.docker.internal" \
  --env "TASK_MANAGER_PORT=8080" \
  --env "TASK_MANAGER_TIMEOUT=30" \
  --env "USE_MOCK_CLIENT=false" \
  -- docker run -i --rm \
    -e TASK_MANAGER_HOST \
    -e TASK_MANAGER_PORT \
    -e TASK_MANAGER_TIMEOUT \
    -e USE_MOCK_CLIENT \
    task-manager-mcp:latest

Linux:

claude mcp add task-manager -s user \
  --env "TASK_MANAGER_HOST=localhost" \
  --env "TASK_MANAGER_PORT=8080" \
  --env "TASK_MANAGER_TIMEOUT=30" \
  --env "USE_MOCK_CLIENT=false" \
  -- docker run -i --rm --network=host \
    -e TASK_MANAGER_HOST \
    -e TASK_MANAGER_PORT \
    -e TASK_MANAGER_TIMEOUT \
    -e USE_MOCK_CLIENT \
    task-manager-mcp:latest

Mock Mode (for testing):

claude mcp add task-manager-mock -s user \
  --env "USE_MOCK_CLIENT=true" \
  -- docker run -i --rm \
    -e USE_MOCK_CLIENT \
    task-manager-mcp:latest

Method 2: Local Python Installation

1. Install Dependencies

pip install -r requirements.txt

2. Manual MCP Configuration

Edit Claude Desktop's MCP configuration file (refer to mcp-config-example.json):

{
  "mcpServers": {
    "task-manager": {
      "command": "python3",
      "args": ["/path/to/your/task_manager_mcp.py"],
      "env": {
        "TASK_MANAGER_HOST": "localhost",
        "TASK_MANAGER_PORT": "8080",
        "TASK_MANAGER_TIMEOUT": "30",
        "USE_MOCK_CLIENT": "false"
      }
    }
  }
}

Uninstallation

# Remove MCP server
claude mcp remove task-manager

# Or remove mock version
claude mcp remove task-manager-mock

MCP Tools

Tool Purpose
update_execution_session Update execution's session_id
create_step Create a step and return step_id
update_step Update step status/message
health_check Health check

Usage Example

# 1. Register session
update_execution_session(execution_id="exec-123", session_id="nova-001")

# 2. Create step
result = create_step(execution_id="exec-123", step_name="analyzing")
step_id = result["step_id"]

# 3. Complete step
update_step(execution_id="exec-123", step_id=step_id, status="completed")

Step Status

  • running - In progress
  • completed - Completed
  • failed - Failed
  • skipped - Skipped

Configuration

Environment Variables

Variable Description Default
TASK_MANAGER_HOST Task Manager service address localhost
TASK_MANAGER_PORT Task Manager service port 8080
TASK_MANAGER_TIMEOUT Request timeout (seconds) 30
USE_MOCK_CLIENT Whether to use Mock client false

Docker Network Notes

  • macOS/Windows: Use host.docker.internal to access host services
  • Linux: Use --network=host and localhost to access host services

Development

Run Locally

pip install -r requirements.txt
python task_manager_mcp.py

Run Tests

make test
# or
python tests/simple_test.py
python tests/test_generated_client.py

Error Handling

When backend API is unavailable, MCP returns clear error messages:

404 Error (API not implemented):

{
  "success": false,
  "error": "API endpoint not found: PATCH /api/executions/{id}/steps/{step_id}. The backend service may not have implemented this API yet.",
  "status_code": 404,
  "hint": "Please check if the Task Manager backend service has this endpoint implemented."
}

Connection Failed:

{
  "success": false,
  "error": "Cannot connect to Task Manager service at http://localhost:8080",
  "hint": "Please verify that the Task Manager service is running and the host/port are correct."
}

from github.com/simpleye1/task-manager-mcp

Установка Task Manager

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/simpleye1/task-manager-mcp

FAQ

Task Manager MCP бесплатный?

Да, Task Manager MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Task Manager?

Нет, Task Manager работает без API-ключей и переменных окружения.

Task Manager — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Task Manager в Claude Desktop, Claude Code или Cursor?

Открой Task Manager на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Task Manager with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории productivity