Plate
Official27 toolsby plate
Minimal project management for teams and AI agents.
Minimal project management tool for teams and AI agent collaboration.
Captured live from the server via tools/list.
list_workspaces
List all Plate workspaces the user is a member of.
No parameters.
list_projects
List projects in a workspace.
Parameters (1)
- workspaceIdstringrequired
Workspace ID
list_tasks
List tasks in a project, or look up a specific task by its public number. To resolve a public ID like 'TES-1': pass taskPrefix='TES' and number=1 — the prefix locates the correct workspace automatically (do NOT hardcode workspaceId when the prefix belongs to a different workspace). Alternatively pass workspaceId + number when you are certain of the workspace.
Parameters (8)
- projectIdstring
Project ID. Required unless number is provided.
- workspaceIdstring
Workspace ID. Use when searching by number and you know the workspace. Ignored when taskPrefix is provided.
- taskPrefixstring
Task prefix (e.g. 'TES' from TES-1). When provided with number, the workspace is located by prefix automatically — use this instead of workspaceId when the prefix is known.
- numbernumber
Look up a task by its public number (digits only — e.g. 1 from TES-1). Requires either taskPrefix or workspaceId. projectId is ignored when number is provided.
- statusIdstring
Filter by status ID
- listIdstring
Filter by section ID
- includeCompletedboolean
Include completed tasks (default: false)
- limitnumber
Max number of tasks to return (default: 100, max: 500)
list_sections
List sections (columns) in a project.
Parameters (1)
- projectIdstringrequired
Project ID
get_task
Get full details of a task. You can look up by internal taskId OR by public task identifier. To resolve a public ID like 'TES-1' or 'SCD-409', pass it as taskId — the prefix is used to find the correct workspace automatically. Alternatively, pass workspaceId + number (digits only).
Parameters (3)
- taskIdstring
Internal task ID OR full public task identifier (e.g. 'TES-1', 'SCD-409'). When a prefixed ID is passed, the prefix is used to locate the correct workspace automatically.
- workspaceIdstring
Workspace ID. Used when looking up by number without a prefix.
- numbernumber
Public task number (digits only — e.g. 409 from SCD-409). Requires workspaceId unless taskId contains the prefix.
list_comments
List a task's comments, oldest first. The taskId is the internal document ID from list_tasks — NOT the public SCD-XXX number.
Parameters (1)
- taskIdstringrequired
Internal task ID (from list_tasks `id` field, not the public SCD-XXX number)
list_members
List workspace members with their userId, name, email, and role. Use userId as assigneeId when creating or updating tasks.
Parameters (1)
- workspaceIdstringrequired
Workspace ID
list_activity
List task activity history (status changes, assignments, moves, etc.) over a time range. Use it for time-based questions like which tasks were completed last week or what someone did. Filters: from/to (ISO 8601 dates), actorId (who made the change — get userIds from list_members), type ('task_status_changed', or 'completed' for transitions into a Done status), and projectId. Each row gives the task identifier, the status change, who did it, and the task's owner and assignee.
Parameters (7)
- workspaceIdstringrequired
Workspace ID
- fromstring
Start of range, ISO 8601 (e.g. 2026-06-01)
- tostring
End of range, ISO 8601
- actorIdstring
Only changes made by this userId
- typestring
Event type, e.g. 'task_status_changed' or 'completed'
- projectIdstring
Limit to one project
- limitnumber
Max rows (default 100, max 500)
list_statuses
List workflow statuses for a workspace. Use the returned IDs as statusId when creating or updating tasks.
Parameters (1)
- workspaceIdstringrequired
Workspace ID
create_task
Create a new task in a project section. Only call this tool when creating a brand-new task that does not yet exist. To change the name, status, assignee, or description of an existing task, call update_task instead. To mark an existing task as done, call complete_task instead. If unsure whether a task already exists, call list_tasks first.
Parameters (5)
- projectIdstringrequired
Project ID
- listIdstringrequired
Section ID
- namestringrequired
Task name
- statusIdstring
Initial status ID
- assigneeIdstring
Assignee user ID
update_task
Update one or more fields on an existing task. Use this instead of create_task when the task already exists. The taskId is the internal document ID from list_tasks — NOT the public task number (e.g. SCD-408). To resolve a public number to an internal ID, call list_tasks with workspaceId + number first.
Parameters (6)
- taskIdstringrequired
Internal task ID (from list_tasks `id` field, not the public SCD-XXX number)
- namestring
New task name
- statusIdstring
New status ID
- assigneeIdany
New assignee user ID (null to unassign)
- listIdstring
Move to a different section (must belong to the same project)
- descriptionstring
New description. Supports markdown: # headings, - bullets, 1. numbered lists, **bold**, *italic*, `code`, > blockquote.
complete_task
Mark an existing task as completed or reopen it. Use this instead of create_task when the task already exists and you only need to change its completion state. The taskId is the internal document ID from list_tasks — NOT the public task number (e.g. SCD-408). To resolve a public number to an internal ID, call list_tasks with workspaceId + number first.
Parameters (2)
- taskIdstringrequired
Internal task ID (from list_tasks `id` field, not the public SCD-XXX number)
- isCompletedboolean
True to complete, false to reopen (default: true)
delete_task
Permanently delete a task. Comments and attachments are removed automatically. The taskId is the internal document ID from list_tasks — NOT the public task number (e.g. SCD-408).
Parameters (1)
- taskIdstringrequired
Internal task ID (from list_tasks `id` field, not the public SCD-XXX number)
create_project
Create a new project in a workspace. If a project with the same name already exists in the workspace, returns the existing project instead of creating a duplicate — check the `created` field in the response to tell the two cases apart.
Parameters (3)
- workspaceIdstringrequired
Workspace ID
- namestringrequired
Project name
- descriptionstring
Project description
update_project
Rename a project or update its description.
Parameters (3)
- projectIdstringrequired
Project ID
- namestring
New project name
- descriptionany
New project description (null to clear)
create_section
Create a new section (column) in a project. If a section with the same name already exists in the project, returns the existing section instead of creating a duplicate — check the `created` field in the response to tell the two cases apart.
Parameters (2)
- projectIdstringrequired
Project ID
- namestringrequired
Section name
update_section
Rename a section.
Parameters (2)
- sectionIdstringrequired
Section ID
- namestringrequired
New section name
delete_comment
Delete a comment from a task.
Parameters (1)
- commentIdstringrequired
Comment ID
create_comment
Add a comment to a task. The taskId is the internal document ID from list_tasks — NOT the public task number (e.g. SCD-408).
Parameters (2)
- taskIdstringrequired
Internal task ID (from list_tasks `id` field, not the public SCD-XXX number)
- textstringrequired
Comment text. Supports markdown: # headings, - bullets, 1. numbered lists, **bold**, *italic*, `code`, > blockquote.
create_tasks
Create multiple tasks in a project in one action. Use this instead of calling create_task multiple times when the user asks to create several tasks at once. All tasks are created atomically — if validation fails for any item, nothing is created.
Parameters (3)
- projectIdstringrequired
Project ID
- listIdstring
Default section ID for all tasks (can be overridden per task)
- tasksarrayrequired
Tasks to create (1–50)
update_tasks
Update multiple existing tasks in one action. Use this instead of calling update_task multiple times when the user asks to change several tasks at once. All updates are applied atomically.
Parameters (1)
- tasksarrayrequired
Tasks to update (1–50)
complete_tasks
Mark multiple tasks as completed in one action. Use this instead of calling complete_task multiple times. Already-completed tasks are left as-is.
Parameters (2)
- taskIdsarrayrequired
Internal task IDs to complete (1–100)
- isCompletedboolean
True to complete, false to reopen (default: true)
delete_tasks
Permanently delete multiple tasks in one action. Use this instead of calling delete_task multiple times. All tasks are validated before any are deleted.
Parameters (1)
- taskIdsarrayrequired
Internal task IDs to delete (1–50)
create_sections
Create multiple sections in a project in one action. Use this instead of calling create_section multiple times.
Parameters (2)
- projectIdstringrequired
Project ID
- sectionsarrayrequired
Sections to create (1–30)
update_sections
Rename multiple sections in one action. Use this instead of calling update_section multiple times.
Parameters (1)
- sectionsarrayrequired
Sections to update (1–30)
create_comments
Add multiple comments to tasks in one action. Use this instead of calling create_comment multiple times.
Parameters (1)
- commentsarrayrequired
Comments to create (1–50)
delete_comments
Delete multiple comments in one action. Use this instead of calling delete_comment multiple times. All comments are validated before any are deleted.
Parameters (1)
- commentIdsarrayrequired
Comment IDs to delete (1–50)
README not available yet.
Install
Remote endpoint
Streamable HTTPHosted server - connect over the network, no local install.
https://plate.to/mcpclaude_desktop_config.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://plate.to/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.