archive_project
Archive or restore a project (hidden from default lists but retained) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).
Archive or restore a project (hidden from default lists but retained).
| Required permission | work:write |
| Capability ID | projects.archive |
| Destructive | No |
Parameters
| Parameter | Type | Required | Notes |
|---|---|---|---|
id | string (uuid) | yes | |
archived | boolean | no |
Input schema (JSON Schema)
{
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"archived": {
"type": "boolean",
"default": true
}
},
"required": [
"id"
],
"additionalProperties": false
}Access control
A call succeeds only when the personal access token's scopes and the holder's role both allow work:write (effective permission = scope ∩ role, default-deny). The tool runs inside the token owner's organization — tenancy is never a parameter.
add_subtask
Create a sub-task under a work item (inherits its project; cycle/depth checked) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).
create_api_token
Mint a scoped personal access token (secret returned once) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the tokens:write permission).