
Connect your AI assistant to PomoDash for seamless task and project management.
2.8K
14 Tools
Version 4.43 or later needs to be installed to add the server automatically
Use cases
About
Connect your AI assistant to PomoDash for seamless task and project management.
| Attribute | Details |
|---|---|
| Docker Image | mcp/pomodash |
| Author | DannyyTv |
| Repository | https://github.com/dannyytv/pomodash-mcp-server |
| Attribute | Details |
|---|---|
| Dockerfile | https://github.com/dannyytv/pomodash-mcp-server/blob/3c24d42aef5dda0e3b0006b2e04712843aff1d70/Dockerfile |
| Commit | 3c24d42aef5dda0e3b0006b2e04712843aff1d70 |
| Docker Image built by | Docker Inc. |
| Docker Scout Health Score | |
| Verify Signature | COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/pomodash --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub |
| Licence | MIT License |
| Tools provided by this Server | Short Description |
|---|---|
create_category | Create a new category or project |
create_note | Create a new note in PomoDash |
create_note_for_project | Create a note linked to a specific project |
create_note_for_task | Create a note linked to a specific task |
create_task | Create a new task in PomoDash |
create_task_for_project | Create a task linked to a specific project |
delete_note | Delete a note |
delete_task | Delete a task |
list_categories | List all categories and projects |
list_note_references | List available tasks and projects for note linking |
list_notes | List all notes |
list_tasks | List all tasks |
update_note | Update an existing note |
update_task | Update an existing task |
create_categoryCreate a new category or project
| Parameters | Type | Description |
|---|---|---|
name | string | Category/Project name (required) |
color | stringoptional | Category color (default: #3b82f6) |
is_project | booleanoptional | Whether this is a project (default: false) |
create_noteCreate a new note in PomoDash
| Parameters | Type | Description |
|---|---|---|
content | string | Note content (required) |
reference_id | stringoptional | Reference ID (default: general) |
reference_type | stringoptional | Type of reference (default: general) |
create_note_for_projectCreate a note linked to a specific project
| Parameters | Type | Description |
|---|---|---|
content | string | Note content (required) |
project_id | string | ID of the project to link the note to (required) |
create_note_for_taskCreate a note linked to a specific task
| Parameters | Type | Description |
|---|---|---|
content | string | Note content (required) |
task_id | string | ID of the task to link the note to (required) |
create_taskCreate a new task in PomoDash
| Parameters | Type | Description |
|---|---|---|
title | string | Task title (required) |
description | stringoptional | Task description (optional) |
due_date | stringoptional | Due date in ISO format (optional) |
end_time | stringoptional | End time for timeboxing (optional) |
priority | stringoptional | Task priority (default: medium) |
start_time | stringoptional | Start time for timeboxing (optional) |
create_task_for_projectCreate a task linked to a specific project
| Parameters | Type | Description |
|---|---|---|
project_id | string | Project ID to link task to (required) |
title | string | Task title (required) |
description | stringoptional | Task description (optional) |
due_date | stringoptional | Due date in ISO format (optional) |
priority | stringoptional | Task priority (optional) |
delete_noteDelete a note
| Parameters | Type | Description |
|---|---|---|
note_id | string | Note ID to delete (required) |
delete_taskDelete a task
| Parameters | Type | Description |
|---|---|---|
task_id | string | Task ID to delete (required) |
list_categoriesList all categories and projects
list_note_referencesList available tasks and projects for note linking
list_notesList all notes
list_tasksList all tasks
update_noteUpdate an existing note
| Parameters | Type | Description |
|---|---|---|
note_id | string | Note ID to update (required) |
content | stringoptional | New note content (optional) |
update_taskUpdate an existing task
| Parameters | Type | Description |
|---|---|---|
task_id | string | Task ID to update (required) |
description | stringoptional | New task description (optional) |
priority | stringoptional | New task priority (optional) |
status | stringoptional | New task status (optional) |
title | stringoptional | New task title (optional) |
{
"mcpServers": {
"pomodash": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"POMODASH_API_URL",
"-e",
"POMODASH_API_KEY",
"mcp/pomodash"
],
"env": {
"POMODASH_API_URL": "https://mcp.pomodash.mindsnapz.de",
"POMODASH_API_KEY": "pmk_abc123your_real_key_here"
}
}
}
}