{"name":"io.github.theluckystrike/kanban-todo-tasks-projects-board","slug":"theluckystrike-kanban-todo-tasks-projects-board","title":null,"description":"A local task board per project: columns, due dates, estimates, priorities, overdue, weekly review.","url":"https://mcp.market/server/theluckystrike-kanban-todo-tasks-projects-board","grade":"C","score":64,"certified":false,"status":"active","category":"productivity","tags":["productivity"],"transport":"mixed","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/theluckystrike/mcp-servers","website":"https://mcp.zovo.one/s/kanban","version":"0.22.0","remotes":[{"type":"streamable-http","url":"https://mcp.zovo.one/mcp/kanban","headers":[{"description":"Bearer <Pro license key or anonymous token from GET https://mcp.zovo.one/mcp/token>","isRequired":true,"isSecret":true,"name":"Authorization"}]}],"packages":[{"registryType":"mcpb","identifier":"https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/kanban.mcpb","version":"0.22.0","fileSha256":"8c7911db9172f4a3dfd393060744b43e65efd5ee314089c2bbc1cd69ef05fe9a","transport":{"type":"stdio"},"environmentVariables":[{"description":"Optional Pro license key (MCPL1....). Verified offline.","isSecret":true,"name":"MCP_LICENSE_KEY"}]}],"tools":[{"name":"board","description":"Show one board column by column: tasks, estimate, actual and overdue count in each, then the board totals and the estimate still open. Defaults to your busiest board. Use project_list for every board.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project":{"type":"string","maxLength":100,"description":"Which board; defaults to your busiest one"}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"columns_set","description":"Replace one board's columns, in order, with 2 to 12 unique names. Tasks in a removed column move to the FIRST column. Blanks are dropped first, so a list normalising below two names is refused. Pro.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project":{"type":"string","maxLength":100,"description":"Which board"},"columns":{"type":"array","items":{"type":"string","maxLength":40},"minItems":2,"maxItems":12,"description":"The new column names in order, at most 12, e.g. ['inbox','next','doing','done']"}},"required":["project","columns"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"license_activate","description":"Turn Pro on for this connection with key, an MCPL1.<payload>.<signature> issued at checkout for this server or the bundle. Data under your token stays; a wrong or expired key changes nothing. license_status confirms it.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"key":{"type":"string","description":"License key from checkout, MCPL1.<payload>.<signature>"}},"required":["key"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"license_status","description":"Report this endpoint's licence state for your token as JSON: the product, the tier free or pro, why it is not Pro, and the checkout URL. Call it to explain a free-tier refusal. No arguments, nothing changes.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"overdue","description":"List every task whose due day is already past, across all boards, oldest first, in the task_list table. as_of measures against a day you name. A finished task, or one with no due date, never counts.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"as_of":{"type":"string","maxLength":64,"description":"Measure against this day instead of today (YYYY-MM-DD, 'next Monday', '+7d')"},"limit":{"type":"integer","minimum":1,"maximum":2000,"description":"Rows to print; default 200"}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"project_delete","description":"Delete an empty board and give its free-tier slot back. A board still holding tasks, open or done, is refused with one named, because task_add creates boards as a side effect and the work would be lost.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project":{"type":"string","maxLength":100,"description":"Board to remove, e.g. 'Nova Site'. It must hold no tasks at all."}},"required":["project"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"project_list","description":"List every board with its task-id prefix, open and done counts, estimate still open and overdue count, plus free-tier use (3 boards, 200 open tasks). Use board for one board broken down by column.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"task_add","description":"Add one task to a board and return its id, board and column. The board is created on first use, so pass an existing project or leave it out. An identical open task is refused. Free: 3 boards, 200 open.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"title":{"type":"string","maxLength":300,"description":"What the task is, e.g. 'Write the launch email'"},"project":{"type":"string","maxLength":100,"description":"Project or board name. A partial name matching exactly one existing project is used as that project. Defaults to your only board."},"column":{"type":"string","maxLength":40,"description":"Column to start in; defaults to the first column (backlog)"},"due":{"type":"string","maxLength":64,"description":"Due date: YYYY-MM-DD, 'today', 'tomorrow', 'Friday', 'next Monday' or '+3d'"},"estimate_minutes":{"type":"integer","minimum":0,"maximum":100000,"description":"How long you think it will take, in minutes"},"priority":{"type":"string","enum":["low","normal","high","urgent"],"description":"Priority; defaults to normal"},"tags":{"type":"array","items":{"type":"string","maxLength":60},"maxItems":30,"description":"Free-form tags, e.g. ['writing','client']"},"notes":{"type":"string","maxLength":5000,"description":"Longer notes for the task"}},"required":["title"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"task_delete","description":"Delete one task by id, permanently; the id is never reused. The answer names any logged minutes lost. time-tracker entries are a separate store and are untouched. Use task_done to keep the record.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","maxLength":64,"description":"Task id, e.g. NOVA-12"}},"required":["id"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"task_done","description":"Mark one task finished: it moves to the board's done column (named done, else the last) and is stamped, leaving task_list and the open counts. Returns estimate against actual when both are known.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","maxLength":64,"description":"Task id, e.g. NOVA-12"}},"required":["id"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"task_list","description":"List tasks as a table of id, project, column, title, priority, due, estimate, actual and tags, sorted by due date, with the total estimate. Done tasks are left out unless include_done. 200 rows default.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project":{"type":"string","maxLength":100,"description":"Only this project"},"column":{"type":"string","maxLength":40,"description":"Only this column, e.g. 'doing'"},"tag":{"type":"string","maxLength":60,"description":"Only tasks carrying this tag"},"due_before":{"type":"string","maxLength":64,"description":"Only tasks due on or before this day (YYYY-MM-DD, 'today', 'Friday', '+7d')"},"overdue":{"type":"boolean","description":"Only tasks past their due date"},"include_done":{"type":"boolean","description":"Include finished tasks; default false"},"limit":{"type":"integer","minimum":1,"maximum":2000,"description":"Rows to print; default 200"}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"task_log_time","description":"Add real minutes worked to one task so estimate and actual can be compared. Minutes ADD; a negative corrects an over-count. Below zero or past 100,000 is refused. This counter is the board's own.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","maxLength":64,"description":"Task id, e.g. NOVA-12"},"minutes":{"type":"integer","minimum":-100000,"maximum":100000,"description":"Minutes to add; a negative number corrects an over-count"}},"required":["id","minutes"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"task_move","description":"Move one task to another column of its own board and report the old and new column. An unknown column is refused, listing the real ones. Entering the done column stamps completion; leaving it clears it.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","maxLength":64,"description":"Task id, e.g. NOVA-12"},"column":{"type":"string","maxLength":40,"description":"Target column, e.g. 'doing'"}},"required":["id","column"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"task_search","description":"Find tasks whose id, title, notes or tags contain the query, across every board, finished ones included. Plain case-insensitive substring, never a regex. Use task_list for structured filters.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"type":"string","maxLength":200,"description":"Text to look for"},"limit":{"type":"integer","minimum":1,"maximum":2000,"description":"Rows to print; default 200"}},"required":["query"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"task_start_timer","description":"Return the exact arguments to pass to the time-tracker's timer_start for one task, and record the link here. It starts nothing itself, and warns when the tracker's own project names would misfile the time.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","maxLength":64,"description":"Task id, e.g. NOVA-12"}},"required":["id"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"task_update","description":"Change a task by id: only the fields you pass are touched. tags REPLACES the whole list, due 'none' clears it, and project moves the task to a board that already exists. Returns the task's new row.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","maxLength":64,"description":"Task id, e.g. NOVA-12"},"title":{"type":"string","maxLength":300},"notes":{"type":"string","maxLength":5000},"due":{"type":"string","maxLength":64,"description":"New due date, or 'none' to clear it"},"estimate_minutes":{"type":"integer","minimum":0,"maximum":100000},"priority":{"type":"string","enum":["low","normal","high","urgent"]},"tags":{"type":"array","items":{"type":"string","maxLength":60},"maxItems":30,"description":"Replaces the whole tag list"},"column":{"type":"string","maxLength":40},"project":{"type":"string","maxLength":100,"description":"Move the task to another existing project board"}},"required":["id"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"weekly_review","description":"Compare done against planned for one ISO week per project: how many were due, how many of those are finished, how many were completed, and estimate against actual minutes. Any week but this one is Pro.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"week":{"type":"string","maxLength":16,"description":"ISO week, e.g. '2026-W36'. Defaults to this week. Past weeks are a Pro feature."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":64,"grade":"C","scanned_at":"2026-09-17T16:31:51.492Z","report":{"scannerVersion":"0.1.2","scannedAt":"2026-09-17T16:31:51.382Z","components":{"code":{"score":-1,"max":25,"notes":["package could not be scanned"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 324ms"]},"poisoning":{"score":15,"max":15,"notes":["17 tool descriptions checked"]},"auth":{"score":8,"max":15,"notes":["API key sent as a header"]},"maintenance":{"score":3,"max":15,"notes":["repository not readable: github 401"]},"identity":{"score":2,"max":10,"notes":["no repository or website to verify"]}},"findings":[],"inputs":{"probes":[{"url":"https://mcp.zovo.one/mcp/kanban","reachable":true,"authRequired":false,"latencyMs":324,"serverInfo":{"name":"mcp-kanban","version":"0.22.0"}}],"packages":[],"repo":{"found":false,"owner":"theluckystrike","repo":"mcp-servers","error":"github 401"}}}},"grade_history":[]}