RyTask docs
MCP tools

search

Full-text search across work items, comments, projects, labels, and users (ranked, permission-scoped) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:read permission).

View as MarkdownOpen in ChatGPTOpen in Claude

Full-text search across work items, comments, projects, labels, and users (ranked, permission-scoped).

Required permissionwork:read
Capability IDsearch.query
DestructiveNo

Parameters

ParameterTypeRequiredNotes
qstringyes
typesstringno
limitintegerno

Input schema (JSON Schema)

{
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "types": {
      "type": "string"
    },
    "limit": {
      "type": "integer",
      "minimum": 0,
      "maximum": 50,
      "default": 20
    }
  },
  "required": [
    "q"
  ],
  "additionalProperties": false
}

Access control

A call succeeds only when the personal access token's scopes and the holder's role both allow work:read (effective permission = scope ∩ role, default-deny). The tool runs inside the token owner's organization — tenancy is never a parameter.

On this page