Skip to main content
Glama
openl-tablets

OpenL MCP Server

Official

Get Project Status

openl_project_status
Idempotent

Get a project's compile state, diagnostics, pending changes, and module/test summary. Wait for compilation to complete, filter by severity, or switch branches as needed.

Instructions

Get the project's compile state, diagnostics, pending changes, and module/test summary. By default wait=true: a supplied branch switches the opened design project to that branch before validation; if Studio reports idle, the tool lazily starts compilation through the tables API; if compilation is already running, it waits for a terminal state (ok/warnings/errors) and emits progress notifications when available. Set wait=false only for a fast read-only snapshot, which may legitimately return idle or compiling and never switches branches. Edits made through the MCP table tools already trigger recompilation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
waitNoWhen true (default), returns a conclusive compile state: an idle project is compiled lazily through Studio's tables API, while an already-running compilation is followed over the real-time status topic until compileState is terminal (ok/warnings/errors). Progress notifications are emitted when available. Set false only for a one-shot read-only snapshot that may return idle or compiling.
branchNoOptional target branch. With wait=true (default), the tool switches an opened design project to this branch before validating it. With wait=false, this is a read-only assertion and Studio returns 409 when it differs from the currently opened branch. Omit for repositories that do not support branches and for repository 'local'.
severityNoFilter compilation.messages.items to only these severities. Useful when the project has many warnings and you want to isolate errors: pass severity: ['ERROR']. Default: all severities. Note: items are always sorted ERROR → WARN → INFO before any filter or truncation is applied, so errors are visible without this filter.
projectIdYesProject ID returned by backend. Use the exact 'projectId' value from openl_list_projects() response without modification or reformatting.
timeoutMsNoMax time in milliseconds to wait for compilation when wait=true. On expiry, the last-seen status is returned (no error). Default 120000 (2 minutes). Cap 600000 (10 minutes). Ignored when wait=false.
maxMessagesNoCap the number of items returned in compilation.messages.items. The list is sorted ERROR → WARN → INFO first so the most actionable items are preserved when capped. Pair with severity to bound very large diagnostic lists. Default: no cap (relies on the response-format character truncation).
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. Changed5 schema fields changedv1.2.0
    • changedInput schema / properties / branch / description
      Previous value: -"Optional branch name. When provided, must match the project's currently opened branch (the backend returns 409 on mismatch). Omit for repositories that do not support branches and for projects with repository 'local'."New value: +"Optional target branch. With wait=true (default), the tool switches an opened design project to this branch before validating it. With wait=false, this is a read-only assertion and Studio returns 409 when it differs from the currently opened branch. Omit for repositories that do not support branches and for repository 'local'."
    • 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 / wait / default
      Previous value: -falseNew value: +true
    • changedInput schema / properties / wait / description
      Previous value: -"When true, the tool subscribes to the studio's real-time status topic and blocks until compileState is terminal (ok/warnings/errors), emitting MCP progress notifications along the way. Use this immediately after an edit (openl_update_table/openl_append_table/openl_upload_file) to get the post-compile state in one call instead of polling. If the initial state is already terminal, returns immediately. Default false (one-shot snapshot)."New value: +"When true (default), returns a conclusive compile state: an idle project is compiled lazily through Studio's tables API, while an already-running compilation is followed over the real-time status topic until compileState is terminal (ok/warnings/errors). Progress notifications are emitted when available. Set false only for a one-shot read-only snapshot that may return idle or compiling."
  2. Addedv1.1.0

TDQS

A4.4/5.0
Behavior5/5

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

Discloses non-obvious side effects: branch switching before validation, lazy compilation start when idle, waiting on a live status topic, progress notifications, 409 on wait=false branch mismatch, and timeout fallback. This goes well beyond the annotations' readOnlyHint=false and idempotentHint=true, giving the agent an accurate model of when the tool mutates state.

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?

Four sentences: purpose first, then default/wait behavior, then the read-only exception, then the recompilation note. Every sentence carries a distinct fact needed to call the tool safely, with no redundant filler or repetition of schema details.

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 tool with no output schema, the description names what it returns (compile state, diagnostics, pending changes, module/test summary) and the key terminal states (ok/warnings/errors). The schema fills in per-parameter details like timeout and severity. It could further describe the exact response shape or failure modes for unopened projects, but overall it is sufficient for correct invocation.

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

Parameters3/5

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

Schema description coverage is 100% and the parameter descriptions are already detailed, covering wait semantics, branch mismatch behavior, severity sorting, timeout caps, and response formats. The main description's extra behavioral notes add useful context but do not materially improve parameter understanding beyond what the schema already documents. Baseline 3 is appropriate.

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 opens with a specific verb and resource: it returns compile state, diagnostics, pending changes, and module/test summary. This clearly differentiates it from sibling tools like openl_get_project or openl_get_test_results_summary, which cover only subsets of that status surface. Very little inference is needed.

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?

The description gives explicit usage direction: default wait=true behavior, 'Set wait=false only for a fast read-only snapshot', and 'Omit for repositories that do not support branches'. It also notes that table edits already trigger recompilation. It does not name sibling alternatives for when to prefer openl_get_test_results_summary or openl_list_project_local_changes, so I won't give full marks.

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