Skip to main content
Glama

list_boards

List saved OpenProject boards and queries, optionally scoped to a project, with search and offset pagination to navigate large sets.

Instructions

List saved OpenProject boards/queries, optionally scoped to a project.

limit is capped at OPENPROJECT_MAX_PAGE_SIZE (default 50); pass the returned next_offset as the next call's offset to page past the cap.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo
searchNo
projectNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changedv0.3.7
    • addedInput schema / additionalProperties
      Added value: +false
  2. Addedv0.3.3
  3. Removedv0.3.0
  4. Changed1 schema field changedv0.2.3
    • changedOutput schema / (root)
      Previous value: -{
      -  "$defs": {
      -    "BoardSummary": {
      -      "properties": {
      -        "can_delete": {
      -          "title": "Can Delete",
      -          "type": "boolean"
      -        },
      -        "can_update": {
      -          "title": "Can Update",
      -          "type": "boolean"
      -        },
      -        "filter_count": {
      -          "title": "Filter Count",
      -          "type": "integer"
      -        },
      -        "hidden": {
      -          "title": "Hidden",
      -          "type": "boolean"
      -        },
      -        "id": {
      -          "title": "Id",
      -          "type": "integer"
      -        },
      -        "include_subprojects": {
      -          "title": "Include Subprojects",
      -          "type": "boolean"
      -        },
      -        "name": {
      -          "title": "Name",
      -          "type": "string"
      -        },
      -        "project": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "title": "Project"
      -        },
      -        "project_id": {
      -          "anyOf": [
      -            {
      -              "type": "integer"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "title": "Project Id"
      -        },
      -        "public": {
      -          "title": "Public",
      -          "type": "boolean"
      -        },
      -        "show_hierarchies": {
      -          "title": "Show Hierarchies",
      -          "type": "boolean"
      -        },
      -        "starred": {
      -          "title": "Starred",
      -          "type": "boolean"
      -        },
      -        "timeline_visible": {
      -          "title": "Timeline Visible",
      -          "type": "boolean"
      -        },
      -        "url": {
      -          "title": "Url",
      -          "type": "string"
      -        }
      -      },
      -      "required": [
      -        "id",
      -        "name",
      -        "project_id",
      -        "project",
      -        "public",
      -        "hidden",
      -        "starred",
      -        "include_subprojects",
      -        "show_hierarchies",
      -        "timeline_visible",
      -        "filter_count",
      -        "can_update",
      -        "can_delete",
      -        "url"
      -      ],
      -      "title": "BoardSummary",
      -      "type": "object"
      -    }
      -  },
      -  "properties": {
      -    "count": {
      -      "title": "Count",
      -      "type": "integer"
      -    },
      -    "limit": {
      -      "title": "Limit",
      -      "type": "integer"
      -    },
      -    "next_offset": {
      -      "anyOf": [
      -        {
      -          "type": "integer"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "title": "Next Offset"
      -    },
      -    "offset": {
      -      "title": "Offset",
      -      "type": "integer"
      -    },
      -    "results": {
      -      "items": {
      -        "$ref": "#/$defs/BoardSummary"
      -      },
      -      "title": "Results",
      -      "type": "array"
      -    },
      -    "total": {
      -      "title": "Total",
      -      "type": "integer"
      -    },
      -    "truncated": {
      -      "title": "Truncated",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "offset",
      -    "limit",
      -    "total",
      -    "count",
      -    "next_offset",
      -    "truncated",
      -    "results"
      -  ],
      -  "title": "BoardListResult",
      -  "type": "object"
      -}New value: +null
  5. First observedv0.2.2

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses pagination behavior: the limit is capped at OPENPROJECT_MAX_PAGE_SIZE (default 50) and how to page using next_offset. This adds meaningful behavioral context beyond the schema. It does not mention auth or return structure, but the disclosed details are valuable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, with the primary purpose in the first sentence and essential pagination details in the second. It is front-loaded and concise, with no extraneous text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and no annotations, the description should explain all parameters and behavior. It covers pagination and basic scope but omits search semantics, project parameter format, and any indication of the return structure. For a moderately simple list tool, this is adequate but has clear gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It mentions limit and offset in the pagination note (though not explicitly naming 'offset' except as next_offset), but search and project parameters are not explained at all. The description adds partial value but fails to clarify all parameter semantics, especially search and project.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists saved OpenProject boards/queries with optional project scoping. It uses a specific verb ('list') and resource ('boards/queries'), distinguishing it from sibling tools like get_board (single) and list_grids (different resource).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (listing boards, optionally scoped to a project) but does not explicitly contrast with alternatives like get_board or list_grids, nor does it state when not to use this tool. No exclusions are provided, so guidance is only implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jtauschl/openproject-ce-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server