Skip to main content
Glama
questdb

mcp-server-questdb

Official

set_cell_autorefresh

Configure auto-refresh polling for an individual cell, overriding the notebook default. Supports adaptive polling, disabling, fixed intervals, or clearing the override to inherit the default.

Instructions

Set auto-refresh polling for a cell, as a per-cell override of the notebook default (set_notebook_autorefresh). Applies to both chart (draw-mode) and grid (run-mode) cells. A cell containing DDL/DML never polls: the value is stored, but the engine blocks its ticks and read tools report auto_refresh_blocked: "contains_write". Markdown cells are rejected. Nothing polls without a per-cell value or a notebook default. value: true = adaptive poll (interval auto-tuned to response time), false = no polling, a fixed interval string ("1s", "5s", "10s", "30s", "1m"), or null to clear the override so the cell inherits the notebook default.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYes
cell_idYes
buffer_idYes

Schema Changelog

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

  1. Changed1 schema field changedv0.3.1
    • changedInput schema / properties / value / anyOf
      Previous value: -[
      -  {
      -    "type": "boolean"
      -  },
      -  {
      -    "enum": [
      -      "1s",
      -      "5s",
      -      "10s",
      -      "30s",
      -      "1m"
      -    ],
      -    "type": "string"
      -  }
      -]New value: +[
      +  {
      +    "type": [
      +      "boolean",
      +      "null"
      +    ]
      +  },
      +  {
      +    "enum": [
      +      "1s",
      +      "5s",
      +      "10s",
      +      "30s",
      +      "1m"
      +    ],
      +    "type": "string"
      +  }
      +]
  2. First observedv0.3.0

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure, and it delivers: it explains per-cell override semantics, engine-blocking of write cells, the `auto_refresh_blocked: "contains_write"` signal, markdown rejection, and the polling precondition. A mutation tool rarely gets this transparent.

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 dense but every sentence carries distinct information. Purpose and differentiation come first, followed by applicability, blocking behavior, and value semantics. There is no filler or repetition.

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?

Given no annotations and no output schema, the description is highly complete for a config setter: it explains the target, the alternatives, edge cases, and all value semantics. The only remaining gap is the lack of explicit definitions for `buffer_id` and `cell_id`, which are required parameters and left to inference.

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 0%, so the description must compensate. It thoroughly documents `value` including true/false, fixed interval strings, and null-clearing behavior. However, `buffer_id` and `cell_id` are never explicitly described; their roles are only weakly implied by 'cell' and 'notebook default', leaving two of three required parameters under-specified.

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 states the exact action ('Set auto-refresh polling for a cell') and identifies it as a per-cell override of the notebook default, naming sibling set_notebook_autorefresh. This clearly differentiates it from the many cell-related and notebook-default sibling tools without ambiguity.

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

Usage Guidelines5/5

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

It explicitly names the alternative tool (set_notebook_autorefresh) and gives concrete applicability rules: works for chart and grid cells, DDL/DML cells never poll, Markdown cells are rejected, and polling requires a per-cell value or notebook default. This is explicit when-to-use and when-not-to-use guidance.

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/questdb/mcp-server-questdb'

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