RyTask docs
MCP tools

create_project

Create a project (seeds default statuses + key counter + creator membership) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).

View as MarkdownOpen in ChatGPTOpen in Claude

Create a project (seeds default statuses + key counter + creator membership).

Required permissionwork:write
Capability IDprojects.create
DestructiveNo

Parameters

ParameterTypeRequiredNotes
namestringyes
keyPrefixstringyes
descriptionstringno
iconstringno
colorstringno
leadIdstring (uuid)no

Input schema (JSON Schema)

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 120
    },
    "keyPrefix": {
      "type": "string",
      "pattern": "/^[A-Z][A-Z0-9]{1,9}$/"
    },
    "description": {
      "type": "string",
      "maxLength": 2000
    },
    "icon": {
      "type": "string",
      "maxLength": 64
    },
    "color": {
      "type": "string",
      "minLength": 1,
      "maxLength": 32
    },
    "leadId": {
      "type": "string",
      "format": "uuid"
    }
  },
  "required": [
    "name",
    "keyPrefix"
  ],
  "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.

On this page