_ registry / mcp http-sse · checked 41m ago

donebear

https://mcp.donebear.com

Registry code: f490bbf3fe7fee4e

api record

Done Bear is a GTD-style task manager. Tasks live in views: Inbox, Today, Upcoming, Anytime, Someday, Logbook (completed), and Trash (archived).

get_context is orientation, not a warm-up. Call it when you need to resolve a project, label, team, or member by name, or when the user asks what is in their workspace, and skip it otherwise: going straight to the tool that answers the question is faster and the tools resolve names themselves. Pass the user's IANA timezone (e.g. Australia/Melbourne) to every tool that accepts it — Today and Upcoming are calendar-day dependent, and without a timezone…

endpoint
https://mcp.donebear.com/mcp
protocol
http-sse ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime
100%
latency
541ms

last good check

priced tools
0

of 15 tools

_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 15 tools
15 never probed 0 of 15 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • task_show unknown never probed

    Get full details for a single task: its fields, labels and checklist items, by workspace-scoped task number. Add `include` for the parts that cost extra reads: `["comments"]` for the discussion thread (oldest first, with author and whether each was edited) and `["attachments"]` for the files on it, each with a short-lived signed URL.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "task",
        "context"
      ],
      "properties": {
        "task": {
          "type": "string",
          "pattern": "^[1-9]\\d*$",
          "description": "Workspace-scoped task number, encoded as a string"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "include": {
          "type": "array",
          "items": {
            "enum": [
              "comments",
              "attachments"
            ],
            "type": "string"
          },
          "description": "Extra sections to load. Omit unless you need them: each is its own round trip"
        },
        "timezone": {
          "type": "string",
          "description": "IANA timezone used to resolve \"today\" for views and scheduling (e.g. Australia/Melbourne). Defaults to UTC, which misclassifies Today/Upcoming for users in other timezones, so always pass the user's timezone when known."
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        }
      }
    }
    arguments 38 lines
  • get_context unknown never probed

    Get a snapshot of the current workspace: task counts per view, recent open tasks, and every project, label, team and member. This is the tool that answers what is in the workspace and resolves a project, label, team or member by name — there is no separate list tool for those. Use it for that, not as a warm-up before every turn.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "context"
      ],
      "properties": {
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "timezone": {
          "type": "string",
          "description": "IANA timezone used to resolve \"today\" for views and scheduling (e.g. Australia/Melbourne). Defaults to UTC, which misclassifies Today/Upcoming for users in other timezones, so always pass the user's timezone when known."
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        },
        "tasks_limit": {
          "type": "integer",
          "default": 10,
          "maximum": 50,
          "minimum": 1,
          "description": "Max recent open tasks to return"
        },
        "projects_status": {
          "enum": [
            "active",
            "done",
            "archived",
            "all"
          ],
          "type": "string",
          "default": "active",
          "description": "Which projects to return"
        }
      }
    }
    arguments 39 lines
  • guide unknown never probed

    Read Done Bear's guide for one topic: what the data means, how it relates to the rest of the product, and how to use it well. Load a topic before doing that kind of work for the first time in a session. - `views`: Placing a task in Inbox/Today/Upcoming/Anytime/Someday, reading a view, or working out why Today looks wrong. - `dates`: Setting or clearing a due date, or deciding between a deadline and a start date. - `editing`: Changing a task's fields, clearing a value, appending to notes, or moving a task between projects. - `bulk`: Completing, moving, or editing more than one task at a time, or sweeping a whole view. - `checklists`: Adding sub-steps to a task, building a list inside a task, or ticking items off. - `comments`: Discussing a task with teammates: reading its thread, replying, or correcting a comment. - `projects`: Deciding where a task belongs, creating a project or label, changing a project's status, or joining/leaving a project. - `search`: Looking a task up, listing a view, paging through results, or orienting in a new workspace. - `workspaces`: Working across multiple workspaces, hitting a permission or rate-limit error, or making retries safe. - `agents`: Starting work in a Done Bear workspace for the first time. - `importing`: The user asks how to move their tasks in from Todoist, Things, Trello or a CSV.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "topic",
        "context"
      ],
      "properties": {
        "topic": {
          "enum": [
            "views",
            "dates",
            "editing",
            "bulk",
            "checklists",
            "comments",
            "projects",
            "search",
            "workspaces",
            "agents",
            "importing"
          ],
          "type": "string",
          "description": "Guide topic to read"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        }
      }
    }
    arguments 31 lines
  • project unknown never probed

    Create or change a project. `action: "add"` creates one (name required). `action: "edit"` updates the named project: only the fields given change, and an empty string clears description or target_date. `action: "join"` puts it in the caller's Your projects sidebar list and `action: "leave"` takes it out. Read projects with get_context.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "action",
        "context"
      ],
      "properties": {
        "name": {
          "type": "string",
          "minLength": 1,
          "description": "Project name. Required on add; a rename on edit"
        },
        "action": {
          "enum": [
            "add",
            "edit",
            "join",
            "leave"
          ],
          "type": "string",
          "description": "What to do with the project"
        },
        "status": {
          "enum": [
            "active",
            "on_hold",
            "done",
            "cancelled"
          ],
          "type": "string",
          "description": "Project status (edit only)"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "project": {
          "type": "string",
          "minLength": 1,
          "description": "Project id, key, or name. Required for edit, join and leave"
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        },
        "description": {
          "type": "string",
          "description": "Project description (empty string clears it on an edit)"
        },
        "target_date": {
          "type": "string",
          "description": "Target date (YYYY-MM-DD), or an empty string to clear it (edit only)"
        },
        "idempotency_key": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Stable key that makes retries safe: repeated calls with the same key create only one record and return the same id."
        }
      }
    }
    arguments 62 lines
  • attachment unknown never probed

    Add a file to a task or remove one. `action: "add"` fetches the given HTTPS `url`: the server downloads it, verifies its size and type, and stores it, so the model never sends file bytes. Pass a stable idempotency_key and reuse it for retries so a lost response cannot upload the file twice. `action: "remove"` deletes the named `attachment`. Read a task's files with task_show and `include: ["attachments"]`. Limited to 10 attachments per task and 10 MB per file. Allowed types: images (jpeg, png, gif, webp, heic), PDF, CSV, Markdown, and plain text.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "action",
        "task",
        "context"
      ],
      "properties": {
        "url": {
          "type": "string",
          "format": "uri",
          "description": "HTTPS URL of the file to attach. Required to add"
        },
        "task": {
          "type": "string",
          "pattern": "^[1-9]\\d*$",
          "description": "Workspace-scoped task number, encoded as a string"
        },
        "action": {
          "enum": [
            "add",
            "remove"
          ],
          "type": "string",
          "description": "Whether to attach a file or delete one"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "filename": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Display filename on an add; defaults to the URL's last path segment"
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        },
        "attachment": {
          "type": "string",
          "minLength": 4,
          "description": "Attachment UUID or prefix (>= 4 chars). Required to remove"
        },
        "idempotency_key": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Stable key that makes retries safe: repeated calls with the same key create only one record and return the same id."
        }
      }
    }
    arguments 54 lines
  • label_create unknown never probed

    Create a new label in the workspace.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "title",
        "context"
      ],
      "properties": {
        "title": {
          "type": "string",
          "maxLength": 255,
          "minLength": 1,
          "description": "Label title"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        },
        "idempotency_key": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Stable key that makes retries safe: repeated calls with the same key create only one record and return the same id."
        }
      }
    }
    arguments 30 lines
  • task_list unknown never probed

    List tasks in the workspace, most recently updated first. Completed tasks are ordered by completion time, newest first. Filter by view (inbox, today, upcoming, anytime, someday, logbook, trash) and/or state (open, done, archived, all); `search` ranks matches within that filter. `view: "logbook"` reads completed tasks and `view: "trash"` archived ones, whatever `state` says. Returns up to `limit` tasks; `hasMore` is true when more matched than were returned.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "context"
      ],
      "properties": {
        "view": {
          "enum": [
            "inbox",
            "anytime",
            "today",
            "upcoming",
            "someday",
            "logbook",
            "trash"
          ],
          "type": "string",
          "description": "Filter by GTD view bucket. logbook and trash read the completed and archived tasks regardless of `state`"
        },
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 100,
          "minimum": 1,
          "description": "Max results"
        },
        "state": {
          "enum": [
            "open",
            "done",
            "archived",
            "all"
          ],
          "type": "string",
          "default": "open",
          "description": "Filter by task state"
        },
        "cursor": {
          "type": "string",
          "description": "Opaque pagination cursor from a previous call's `nextCursor`. Pass it with the same filters to fetch the next page."
        },
        "search": {
          "type": "string",
          "description": "Ranked lexical search over title/description; when set, results are ordered by relevance instead of recency"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "timezone": {
          "type": "string",
          "description": "IANA timezone used to resolve \"today\" for views and scheduling (e.g. Australia/Melbourne). Defaults to UTC, which misclassifies Today/Upcoming for users in other timezones, so always pass the user's timezone when known."
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        }
      }
    }
    arguments 60 lines
  • task_add unknown never probed

    Create a new task. The `when` parameter controls which GTD view it appears in: today (default), inbox, upcoming, anytime, or someday. A new task lands in Today unless you say otherwise, so pass `when: "inbox"` for a capture the user has not committed to doing today. Because the default is date-dependent, always pass the user's `timezone` — without it today is resolved in UTC. Dates use YYYY-MM-DD format. Optionally set an assignee, attach labels, and create checklist items at creation. For a task with sub-items (e.g. a shopping list), pass them in `checklist` in one call: their order is preserved exactly.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "title",
        "context"
      ],
      "properties": {
        "team": {
          "type": "string",
          "description": "Team id, key, or name"
        },
        "when": {
          "enum": [
            "inbox",
            "anytime",
            "today",
            "upcoming",
            "someday"
          ],
          "type": "string",
          "description": "GTD view bucket: today, inbox, upcoming, anytime, someday. Omitting this means today, with three exceptions: a deadline or a missing timezone falls back to anytime (the work is due later, or today cannot be resolved), and a project or team falls back to inbox (the task is already filed). Pass timezone to get today. Use \"inbox\" for a capture the user has not committed to doing."
        },
        "notes": {
          "type": "string",
          "description": "Task description/notes"
        },
        "title": {
          "type": "string",
          "minLength": 1,
          "description": "Task title"
        },
        "labels": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          },
          "description": "Labels to attach (each a label id, title, or id prefix)"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "project": {
          "type": "string",
          "description": "Project id, key, or name to assign this task to"
        },
        "assignee": {
          "type": "string",
          "description": "Member user id, name, or email to assign the task to"
        },
        "deadline": {
          "type": "string",
          "description": "Due date in YYYY-MM-DD format"
        },
        "timezone": {
          "type": "string",
          "description": "IANA timezone used to resolve \"today\" for views and scheduling (e.g. Australia/Melbourne). Defaults to UTC, which misclassifies Today/Upcoming for users in other timezones, so always pass the user's timezone when known."
        },
        "checklist": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1
          },
          "maxItems": 100,
          "description": "Checklist item titles to create on the task, kept in the given order"
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        },
        "idempotency_key": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Stable key that makes retries safe: repeated calls with the same key create only one record and return the same id."
        }
      }
    }
    arguments 82 lines
  • task_edit unknown never probed

    Update fields on one task (`task`) or on several at once (`tasks`, max 50). Only the provided fields are changed; omitted fields are left untouched. To remove a value, list the field in `clear` (e.g. `clear: ["deadline"]`). Notes replace the existing notes (no append). `assignee` assigns the task; clear it to unassign. `add_labels` and `remove_labels` change which labels are on it. Editing several tasks applies the same changes to every one of them and cannot be undone in one call, so confirm the list with the user first.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "context"
      ],
      "properties": {
        "task": {
          "type": "string",
          "pattern": "^[1-9]\\d*$",
          "description": "Workspace-scoped task number, encoded as a string"
        },
        "team": {
          "type": "string",
          "description": "Team id, key, or name"
        },
        "when": {
          "enum": [
            "inbox",
            "anytime",
            "today",
            "upcoming",
            "someday"
          ],
          "type": "string",
          "description": "Move to a different GTD view"
        },
        "clear": {
          "type": "array",
          "items": {
            "enum": [
              "deadline",
              "project",
              "team",
              "assignee",
              "notes"
            ],
            "type": "string"
          },
          "description": "Fields to remove a value from, e.g. [\"deadline\"]. Use this rather than sending an empty string."
        },
        "notes": {
          "type": "string",
          "description": "New description/notes (replaces existing)"
        },
        "tasks": {
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^[1-9]\\d*$",
            "description": "Workspace-scoped task number, encoded as a string"
          },
          "maxItems": 50,
          "minItems": 1,
          "description": "Several workspace-scoped task numbers (max 50), instead of `task`. Confirm the list with the user first: one call changes every task in it."
        },
        "title": {
          "type": "string",
          "description": "New title"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "project": {
          "type": "string",
          "description": "Project id, key, or name"
        },
        "assignee": {
          "type": "string",
          "description": "Assign to a member (user id, name, or email)"
        },
        "deadline": {
          "type": "string",
          "description": "Set due date (YYYY-MM-DD)"
        },
        "timezone": {
          "type": "string",
          "description": "IANA timezone used to resolve \"today\" for views and scheduling (e.g. Australia/Melbourne). Defaults to UTC, which misclassifies Today/Upcoming for users in other timezones, so always pass the user's timezone when known."
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        },
        "add_labels": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          },
          "description": "Labels to attach (each a label id, title, or id prefix). The label has to exist already — create one with label_create"
        },
        "remove_labels": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          },
          "description": "Labels to detach (each a label id, title, or id prefix)"
        }
      }
    }
    arguments 102 lines
  • task_done unknown never probed

    Mark a task as complete, or several at once with `tasks` (max 50). They move to the Logbook view. A set of 50 is undone one task_reopen call at a time, so confirm the list with the user first.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "context"
      ],
      "properties": {
        "task": {
          "type": "string",
          "pattern": "^[1-9]\\d*$",
          "description": "Workspace-scoped task number, encoded as a string"
        },
        "tasks": {
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^[1-9]\\d*$",
            "description": "Workspace-scoped task number, encoded as a string"
          },
          "maxItems": 50,
          "minItems": 1,
          "description": "Several workspace-scoped task numbers (max 50), instead of `task`. Confirm the list with the user first: one call changes every task in it."
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        }
      }
    }
    arguments 33 lines
  • task_reopen unknown never probed

    Reopen a completed task, or several at once with `tasks` (max 50). Each returns to its previous view.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "context"
      ],
      "properties": {
        "task": {
          "type": "string",
          "pattern": "^[1-9]\\d*$",
          "description": "Workspace-scoped task number, encoded as a string"
        },
        "tasks": {
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^[1-9]\\d*$",
            "description": "Workspace-scoped task number, encoded as a string"
          },
          "maxItems": 50,
          "minItems": 1,
          "description": "Several workspace-scoped task numbers (max 50), instead of `task`. Confirm the list with the user first: one call changes every task in it."
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        }
      }
    }
    arguments 33 lines
  • task_archive unknown never probed

    Archive a task, or several at once with `tasks` (max 50). They move to the Trash view, out of every working list. Confirm with the user first.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "context"
      ],
      "properties": {
        "task": {
          "type": "string",
          "pattern": "^[1-9]\\d*$",
          "description": "Workspace-scoped task number, encoded as a string"
        },
        "tasks": {
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^[1-9]\\d*$",
            "description": "Workspace-scoped task number, encoded as a string"
          },
          "maxItems": 50,
          "minItems": 1,
          "description": "Several workspace-scoped task numbers (max 50), instead of `task`. Confirm the list with the user first: one call changes every task in it."
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        }
      }
    }
    arguments 33 lines
  • search unknown never probed

    Search tasks across the workspace. Ranked lexical search over title and description: exact and prefix matches rank first, then word-boundary, substring, and fuzzy matches, with recency and status factored in. Multi-word queries match in any order.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "query",
        "context"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 100,
          "minimum": 1,
          "description": "Max results"
        },
        "query": {
          "type": "string",
          "minLength": 1,
          "description": "Search query (matches title and description)"
        },
        "state": {
          "enum": [
            "open",
            "done",
            "archived",
            "all"
          ],
          "type": "string",
          "default": "all",
          "description": "Filter by task state"
        },
        "cursor": {
          "type": "string",
          "description": "Opaque pagination cursor from a previous call's `nextCursor`. Pass it with the same filters to fetch the next page."
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "timezone": {
          "type": "string",
          "description": "IANA timezone used to resolve \"today\" for views and scheduling (e.g. Australia/Melbourne). Defaults to UTC, which misclassifies Today/Upcoming for users in other timezones, so always pass the user's timezone when known."
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        }
      }
    }
    arguments 49 lines
  • checklist unknown never probed

    Change the checklist on a task. `action: "add"` appends items, unchecked, after the existing ones: pass every title for a multi-item list in one call (`titles` keeps the given order, while parallel single adds land in arrival order). `action: "edit"` renames an item and/or checks it (`completed: true`) or unchecks it (`completed: false`). `action: "remove"` deletes one. Read the list, with each item's id and state, from task_show.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "action",
        "task",
        "context"
      ],
      "properties": {
        "item": {
          "type": "string",
          "minLength": 4,
          "description": "Checklist item UUID or prefix (>= 4 chars). Required to edit or remove"
        },
        "task": {
          "type": "string",
          "pattern": "^[1-9]\\d*$",
          "description": "Workspace-scoped task number, encoded as a string"
        },
        "title": {
          "type": "string",
          "maxLength": 500,
          "minLength": 1,
          "description": "One item title to add, or the new title on an edit"
        },
        "action": {
          "enum": [
            "add",
            "edit",
            "remove"
          ],
          "type": "string",
          "description": "What to do to the checklist"
        },
        "titles": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1
          },
          "maxItems": 100,
          "minItems": 1,
          "description": "Several item titles to add, kept in the given order (use instead of `title`)"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "completed": {
          "type": "boolean",
          "description": "Check (true) or uncheck (false) the item, on an edit"
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        },
        "idempotency_key": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Stable key that makes retries safe: repeated calls with the same key create only one record and return the same id."
        }
      }
    }
    arguments 65 lines
  • comment unknown never probed

    Write on a task's comment thread. `action: "add"` posts a comment, attributed to the connected user and visible to everyone in the workspace, so write it as a message to the user's teammates rather than a note to the user; nobody is notified. `action: "edit"` rewrites one of your own (only its author may, and it is then marked edited). `action: "remove"` deletes one permanently — comments have no Trash — so confirm with the user first. Read the thread with task_show and `include: ["comments"]`.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "action",
        "task",
        "context"
      ],
      "properties": {
        "body": {
          "type": "string",
          "maxLength": 10000,
          "minLength": 1,
          "description": "Comment text. Required to add or edit"
        },
        "task": {
          "type": "string",
          "pattern": "^[1-9]\\d*$",
          "description": "Workspace-scoped task number, encoded as a string"
        },
        "action": {
          "enum": [
            "add",
            "edit",
            "remove"
          ],
          "type": "string",
          "description": "What to do on the thread"
        },
        "comment": {
          "type": "string",
          "minLength": 4,
          "description": "Comment UUID or prefix (>= 4 chars). Required to edit or remove"
        },
        "context": {
          "type": "string",
          "description": "Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""
        },
        "workspace": {
          "type": "string",
          "description": "Workspace id, slug, or name"
        },
        "idempotency_key": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Stable key that makes retries safe: repeated calls with the same key create only one record and return the same id."
        }
      }
    }
    arguments 50 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/f490bbf3fe7fee4e/badge.svg)](https://brick.blue/agent/f490bbf3fe7fee4e)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
median latency
work
attempts
0
accepted
0
rejected
0
acceptance rate
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
reviews
paid reviews
0
positive
0
negative
0
score

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.