Skip to main content
Glama
openl-tablets

OpenL MCP Server

Official

Get Full Test Results

openl_get_test_results

Retrieve complete test execution results grouped by table with pagination, filter failures, and view summaries after running tests.

Instructions

Get full test execution results with pagination support. Returns complete test execution summary including testCases array grouped by table. IMPORTANT: Pagination applies to test tables (not individual test cases). Each page returns test results aggregated by table (e.g., 'TestTable1' with 7 tests, 'TestTable2' with 8 tests). Supports filtering failures and pagination (page/offset/size). Use openl_start_project_tests() first to start test execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (0-based). Mutually exclusive with offset
sizeNoPage size (number of results per page, maximum 200)
limitNoPage size (alias for size, maps to size parameter)
offsetNoOffset for pagination. Mutually exclusive with page
unpagedNoReturn all results without pagination. Mutually exclusive with page, offset, size, and limit
failuresNoNumber of failed test units to include in the summary (default: 5, min: 1)
projectIdYesProject ID returned by backend. Use the exact 'projectId' value from openl_list_projects() response without modification or reformatting.
failuresOnlyNoShow only failed tests (default: false)
response_formatNoResponse format: 'json' for structured, round-trippable data (default), 'markdown' for human-readable output, 'markdown_concise' for a brief summary (1-2 paragraphs), or 'markdown_detailed' for full details with contextjson

Schema Changelog

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

  1. Changed4 schema fields changedv1.2.0
    • changedInput schema / properties / response_format / default
      Previous value: -"markdown"New value: +"json"
    • changedInput schema / properties / response_format / description
      Previous value: -"Response format: 'json' for structured data, 'markdown' for human-readable (default), 'markdown_concise' for brief summary (1-2 paragraphs), 'markdown_detailed' for full details with context"New value: +"Response format: 'json' for structured, round-trippable data (default), 'markdown' for human-readable output, 'markdown_concise' for a brief summary (1-2 paragraphs), or 'markdown_detailed' for full details with context"
    • changedInput schema / properties / size / description
      Previous value: -"Page size (number of results per page)"New value: +"Page size (number of results per page, maximum 200)"
    • changedInput schema / properties / size / maximum
      Previous value: -9007199254740991New value: +200
  2. Changed1 schema field changedv1.1.0
    • changedInput schema / required
      Previous value: -[
      -  "projectId",
      -  "failures",
      -  "unpaged"
      -]New value: +[
      +  "projectId"
      +]
  3. First observedv0.0.0

TDQS

A4.2/5.0
Behavior5/5

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

With only openWorldHint=true in annotations, the description carries the disclosure burden and delivers: it flags the non-obvious gotcha that 'Pagination applies to test tables (not individual test cases)' with concrete examples, explains aggregation by table, and reveals the sequencing dependency on openl_start_project_tests. This is exactly the kind of behavioral context that prevents a wrong call, and it contradicts nothing in the annotations.

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

Conciseness4/5

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

Four sentences with the high-value information front-loaded: purpose first, then the pagination gotcha, then the sequencing prerequisite. The example ('TestTable1' with 7 tests) earns its place, though 'Supports filtering failures and pagination (page/offset/size)' is mildly redundant with the schema.

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

Completeness4/5

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

For a 9-parameter tool with no output schema, the description compensates well by specifying the return structure, the pagination unit, and the required predecessor call. It leaves some edge behavior unaddressed (error behavior when no tests have run, unpaged behavior with huge result sets) and doesn't position itself against the two sibling test-result tools, but nothing critical is missing for making a correct call.

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

Parameters4/5

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

Schema description coverage is 100%, so the baseline is 3; the description adds genuine value on top by explaining that page/offset/size operate on tables rather than individual test cases and that failures/failuresOnly filter at the aggregated level. The 'IMPORTANT' note reframes the pagination params in a way the individual param descriptions do not.

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

Purpose4/5

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

States a specific verb+resource ('Get full test execution results') and describes the return shape ('testCases array grouped by table'), which an agent can act on. It distinguishes from siblings like openl_get_test_results_summary largely through the word 'full' and the table-grouping detail, but it never names those siblings explicitly, so the differentiation is implicit rather than stated.

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

Usage Guidelines4/5

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

Provides clear context for when to call it: it is the full-results tool with table-level pagination, and it states the hard prerequisite 'Use openl_start_project_tests() first to start test execution.' It does not give when-not-to-use guidance or name alternatives such as openl_get_test_results_summary / openl_get_test_results_by_table, which is a mild gap given the sibling cluster.

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

Install Server

Other Tools

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/openl-tablets/openl-mcp'

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