loopertaskcom

LooperTask is an AI-native Kanban task manager.

От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноМожет изменять данные

Что умеет

  • List Projects: List all loopertask projects visible to your API token. Use this first to discover project IDs before calling any other tool — most tools require a project_id.
  • My Today: Your personal 'what to do today' view: YOUR open assigned tasks across every project, grouped by project, each flagged overdue / due_today / needs_attention (needs_attention = the task is si
  • List Columns: List the kanban columns of a project. Returns id, name, position, is_queue (Backlog-style), is_terminal (Done-style), ai_blocked (AI cannot pull tasks from here). Use before create_task

Какие данные видит

Нужен ли аккаунт

Не нужен: сервер работает без входа

LooperTask is an AI-native Kanban task manager. This MCP server lets Claude — or any MCP client — work your board directly: claim tasks, move them across columns, comment, and hand finished work back for human review.

What your AI can do

  • Find worklist_projects, list_tasks, and my_today (everything assigned to you, grouped by project, flagged overdue / due-today), plus claim_next_task to pull the next unblocked task from the backlog.
  • Do the workcreate_task, update_task, move_task across columns, reparent_task to build subtask trees, and add_task_blocker / remove_task_blocker to model dependencies.
  • Organizelist_tags / create_tag, list_types_and_priorities, add_comment, and upload_attachment.
  • Close the looprequest_human_review moves a task to Needs Human so a person signs off before it ships.

Auth

Connect with OAuth (sign in through your browser — nothing to paste) or a personal tm_ token. Every call runs with exactly your permissions.

Learn more at loopertask.com.

Список инструментов сервера (24)

Технические названия из tools/list. Нужны только разработчикам.

list_projectsList all loopertask projects visible to your API token. Use this first to discover project IDs before calling any other tool — most tools require a project_id.
my_todayYour personal 'what to do today' view: YOUR open assigned tasks across every project, grouped by project, each flagged overdue / due_today / needs_attention (needs_attention = the task is sitting in a «Needs Human» / ai_blocked column). Done tasks are excluded. Returns totals + per-project groups + task rows (ref, title, column, deadline). Use this to start a work session — see what's on your plate before picking a task to claim.
list_columnsList the kanban columns of a project. Returns id, name, position, is_queue (Backlog-style), is_terminal (Done-style), ai_blocked (AI cannot pull tasks from here). Use before create_task / move_task to pick the right column_id.
list_types_and_prioritiesList the task types (bug/feature/story…) and priorities (High/Medium/Low…) configured for a project. Use before create_task to pick sensible type_id and priority_id — leaving them empty falls back to the project defaults.
list_tasksList tasks in a project with optional filters (column, assignee, tags, free-text search). Returns condensed rows — call get_task for full detail. Use this to survey work before deciding what to claim.
get_taskFetch full detail for one task — description, comments, attachments, activity log, blockers. Use before commenting or moving so you have the context. task_id can be the UUID or the human-readable «PROJ-42» number.
create_taskCreate a new task. column_id is REQUIRED — pick from list_columns. type_id / priority_id are optional (fall back to project defaults). Returns the created task with its id and number.
update_taskPatch fields on an existing task. Only supplied fields change; omitting a field leaves it as-is. Use this to edit title, description, priority, or reassign — for column changes use move_task instead.
move_taskMove a task to a different column (or reorder inside the same column). Optionally use before_task_id / after_task_id to control ordering — with neither, the task lands at the top of the target column. Use this for status transitions (In Progress → Code Review → Done).
reparent_taskSet or clear a task's parent — this is how you build the subtask tree. Pass parent_id to nest task_id UNDER that parent; pass an empty parent_id to detach task_id back to a top-level card. The task keeps its own column — reparenting changes only the parent link, not the status, so a subtask can sit in a different column than its parent. The server rejects cycles (a task can't become its own ancestor) and cross-project parents. Note: create_task cannot set a parent, so reparent_task is the only way to nest (or un-nest) an existing task.
add_task_blockerDeclare that a task depends on another task. After this call, `task_id` is blocked_by `blocker_id` and won't be ready to start until the blocker is done. Use it to wire subtasks and epics: to say "epic X needs subtask Y first", call task_id=X, blocker_id=Y. Both are task UUIDs. Returns the task's updated {blocked_by, blocking} lists.
remove_task_blockerRemove a dependency from a task — the inverse of add_task_blocker. `task_id` will no longer be blocked_by `blocker_id`. Both are task UUIDs. Returns the task's updated {blocked_by, blocking} lists.
list_tagsList every tag defined in a project — returns [{id, name, color}]. Tags are per-project labels (e.g. «продвижение», «bug», «frontend»). Use this to find a tag's UUID to pass in create_task / update_task tag_ids, or to check whether a tag already exists before create_tag.
create_tagCreate a tag in a project and return {id, name, color}. Idempotent on name: if a tag with the same name already exists (case-insensitive) it's returned instead of creating a duplicate — so it's safe to call before every tagging without checking first. Pass the returned id in create_task / update_task tag_ids to label tasks. color is an optional hex string like «#64748b»; omit for the project default. Requires editor access.
memory_listList this project's memory keys — returns [{key, title, type, size, latest_version, updated_at}] (no bodies; use memory_get for content). Project memory is shared, versioned notes/context/rules that persist across machines and teammates: anything you'd keep in CLAUDE.md, learned conventions, decisions, gotchas. Call this at the start of work to see what the project already knows.
memory_searchSearch this project's memory by free text (matches key, title and content) — returns the same light rows as memory_list. Use it to recall what the project knows about a topic before asking a human or re-deriving it.
memory_getFetch one memory entry's full content by key — returns {key, title, type, content, version, latest_version, author_kind, updated_at}. Pass version to read a specific historical revision; omit for the latest. Use memory_list/memory_search to find keys.
memory_putCreate or update a project memory entry by key. Writing new content appends a new version (full history is kept); an identical write is a no-op, so it's safe to sync the same memory from multiple machines. This is how you PERSIST what you learn so it's available on another computer or to another developer over MCP. type is one of fact/rule/reference/context (default context). NEVER store secrets (API keys, tokens, private keys) — the server rejects content that looks like a credential unless you pass allow_secrets=true. Requires editor access.
memory_historyList the revision history of one memory key — returns [{version, title, size, author_kind, created_at}], newest first. Use with memory_get(version) to read or compare an older revision.
memory_deleteDelete a project memory entry and its history by key. Irreversible. Requires editor access.
add_commentPost a markdown comment to a task. Use @email@domain to mention a user (triggers a notification if that user exists). Comments are how AI agents communicate progress, findings, or blockers to humans.
upload_attachmentUpload a file as a task attachment. content_base64 is the raw file bytes base64-encoded (MCP stdio doesn't do binary directly). Use this to attach screenshots, generated reports, or logs. Content-type helps the UI render inline (image/png shows as image; text/* previewed).
claim_next_taskThe core AI-agent loop entry point. Claim the next available task for your AI agent in a project. Returns the full task context (description, blockers) plus your agent's system prompt. If no task is available, returns {task: null, message: "queue empty"} — poll again later or exit. Optionally filter by column, tags, or mine_only (tasks already assigned to your agent user).
request_human_reviewKick a task to the «Needs Human» column with an explanatory comment. Use when you (the AI) can't proceed — ambiguous requirements, blocking dependency, missing credentials, ethical concern. This is a convenience wrapper: one call instead of add_comment + move_task.
loopertaskcom: подключить к Claude, ChatGPT, Cursor · Connectors.fun