MCP Hub
Back to servers

Dooray MCP Server

Enables interaction with Dooray's task and calendar management system, allowing users to filter and list tasks, retrieve details, and manage task comments. It provides a set of tools for seamless integration with MCP-compatible clients like Claude Desktop and Cursor.

Updated
Jan 24, 2026

Dooray MCP Server

MCP server for Dooray task and calendar integration.

Features

  • List tasks with filtering (workflow, assignee, milestone, etc.)
  • Get task details
  • List, add, update, delete comments

Installation

pip install -e .

Configuration

Create a .env file:

DOORAY_API_KEY=your-api-key

Usage

MCP Server (for Claude Desktop, Cursor, etc.)

{
  "mcpServers": {
    "dooray": {
      "command": "dooray-mcp"
    }
  }
}

CLI

# List tasks
dooray task list --project-id YOUR_PROJECT_ID
dooray task list --workflow working

# Get task details
dooray task get TASK_ID

# Comments
dooray comment list TASK_ID
dooray comment add TASK_ID --content "Your comment"
dooray comment update TASK_ID COMMENT_ID --content "Updated"
dooray comment delete TASK_ID COMMENT_ID

MCP Tools

ToolDescription
dooray_list_tasksList tasks with filtering
dooray_get_taskGet task details
dooray_list_commentsList comments
dooray_add_commentAdd comment
dooray_update_commentUpdate comment
dooray_delete_commentDelete comment

Development

pip install -e ".[dev]"
pytest

Reviews

No reviews yet

Sign in to write a review