Nurama Developers

list_project_boards

List the boards in a project, optionally filtered to one visibility tier.

Read-only tool.

List the boards in a project, optionally filtered to one visibility tier. Use this to discover boardIds before listing tasks or creating a task in a specific board.

Input

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project.
visibility"creator" | "reviewer"noRestrict to one visibility tier. Omit to return all boards visible to the bot.
searchstringnoOptional case-insensitive substring match on the board name.

JSON Schema

{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "UUID of the project."
    },
    "visibility": {
      "type": "string",
      "enum": [
        "creator",
        "reviewer"
      ],
      "description": "Restrict to one visibility tier. Omit to return all boards visible to the bot."
    },
    "search": {
      "type": "string",
      "description": "Optional case-insensitive substring match on the board name."
    }
  },
  "required": [
    "projectId"
  ],
  "additionalProperties": false
}

On this page