Skip to main content
Glama

whatmount — TV and monitor mount facts

Server Details

VESA pattern, dimensions and weight per TV or monitor model, from the makers' manuals. Read-only.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

3 tools
list_models_by_vesa_patternModels that use a VESA patternA
Read-onlyIdempotent
Inspect

Every covered TV or monitor whose mounting pattern is the given VESA size, e.g. 200x200 or 400x300, with page URLs. Useful for "which TVs fit my mount".

ParametersJSON Schema
NameRequiredDescriptionDefault
patternYesWidth x height in mm, e.g. 400x400

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare the operation read-only and idempotent. The description adds useful behavioral detail beyond that: it returns all matching models, requires an exact VESA-size pattern, and includes page URLs. 'Covered' is slightly vague, but the safety profile is well covered by annotations.

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 no filler. The scope, examples, return value, and intended use case are all front-loaded and each sentence earns its place.

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 simple read-only list tool with one well-documented parameter, the description is complete enough: it states the result includes page URLs and gives the use case. The meaning of 'covered' is the only minor gap; everything else an agent needs is present.

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 coverage is 100%, with the pattern parameter already documented as 'Width x height in mm.' The description reinforces this with examples like 200x200, but does not add substantial meaning beyond the schema.

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 names a specific operation — listing TVs/monitors by VESA pattern — and includes the output (page URLs). It clearly distinguishes this from search_or_lookup siblings by focusing on mounting-pattern matching.

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 a clear use case: 'which TVs fit my mount.' It does not explicitly contrast with sibling tools like lookup_tv_mount_specs or search_tv_models, but the context makes the intended scenario understandable.

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

lookup_tv_mount_specsTV or monitor mount specs by modelA
Read-onlyIdempotent
Inspect

The VESA mounting pattern, dimensions with and without stand, weight and screen size for a TV or monitor model number, from the manufacturer's manual or spec sheet, with the whatmount.com page to cite. Give the model number as printed on the label (e.g. UN65TU7000, 65Q650G).

ParametersJSON Schema
NameRequiredDescriptionDefault
brandNoBrand, optional, e.g. Samsung
modelYesModel number, e.g. QN55Q60A

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive behavior, and the description adds useful context: data comes from the manufacturer's manual or spec sheet, a whatmount.com citation page is provided, and the model must match the printed label. This goes beyond the annotations without contradicting them.

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?

Two compact sentences: the first front-loads the returned fields and source, the second clarifies the exact model-number format. Every sentence earns its place and there is no redundant restatement of the title or 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?

With no output schema, the description covers the expected return content well and notes the citation source and input format. It does not discuss failure behavior or unit conventions, but for a read-only lookup with a simple one-required-parameter schema, the guidance is sufficient.

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 coverage is 100%, so the baseline is 3, but the description adds real value for the required model parameter by instructing agents to use the model number as printed on the label and providing concrete examples. That clarifies formatting more than the schema alone does.

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 names a specific verb (lookup) and resource (TV or monitor mount specs) and enumerates the exact output fields: VESA pattern, dimensions with/without stand, weight, and screen size. It also scopes to model number, which distinguishes it from sibling tools that search by VESA pattern or TV models.

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 clearly states what this tool is for and gives labeling guidance, so an agent can infer when to use it. However, it does not explicitly mention sibling tools or state when to prefer list_models_by_vesa_pattern or search_tv_models.

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

search_tv_modelsSearch covered TV and monitor modelsA
Read-onlyIdempotent
Inspect

Find which TV or monitor models whatmount.com has published mount facts for, by brand, model fragment or screen size. Returns up to 10 with their facts and page URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesBrand, model fragment or size, e.g. "Hisense 65" or "TCL Q6"

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already capture the safety profile (read-only, idempotent, non-destructive, not open-world). The description adds useful behavioral detail beyond annotations: it caps results at 10 and states each result includes facts and page URLs. This exceeds the baseline but isn't exhaustive about matching semantics or empty-result behavior.

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?

Two sentences, about 28 words, with the action and scope front-loaded and the result behavior stated succinctly. Every clause adds information; there is no filler or repetition.

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

Completeness5/5

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

The tool is simple (one free-text parameter), annotations cover behavioral safety, and the description explains the return payload ('up to 10 with their facts and page URLs'), which is necessary since no output schema exists. The definition gives an agent enough to invoke it correctly.

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%: the query parameter is already documented with examples ('Hisense 65' or 'TCL Q6'). The tool description largely restates the same query types ('brand, model fragment or screen size'), adding no new format or syntax guidance, so the high schema coverage baseline of 3 applies.

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 uses a specific verb ('find') and names the exact resource ('TV or monitor models whatmount.com has published mount facts for'), plus the search dimensions (brand, model fragment, screen size). This clearly distinguishes it from sibling tools like list_models_by_vesa_pattern or lookup_tv_mount_specs, which operate on different lookup keys.

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?

It states clear context: use when you need to discover covered models by brand, model fragment, or screen size. It does not explicitly contrast with sibling tools or provide exclusion criteria, so it misses the top anchor for explicit when/when-not guidance.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updates
    • First observedlist_models_by_vesa_pattern
    • First observedlookup_tv_mount_specs
    • First observedsearch_tv_models

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    A
    maintenance
    Sourced product prices, dated price history, specs and independent-test coverage across 4,764 hardware products and 2,064 software vendors — every figure returned with its source URL and the date it was captured. Unknown values come back as null rather than a guess, so an agent can cite what it surfaces.
    -
  • A
    license
    A
    quality
    C
    maintenance
    Provides vehicle wheel and tyre fitment data for 10,000+ makes, models, and trim levels through 32 read-only tools, enabling searches by vehicle, rim, or tire specifications.
    32
    75
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct query mode: reverse lookup by VESA pattern, exact model specification lookup, and flexible model search. The slight overlap in returned specs is mitigated by clear input differences (model number vs brand/fragment/screen size).

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase snake_case: list_models_by_vesa_pattern, lookup_tv_mount_specs, and search_tv_models. The verbs are semantically distinct and the object naming is uniform.

Tool Count5/5

Three tools is at the lower end of the ideal range, but this is a narrowly scoped reference server and each tool serves a necessary, non-redundant purpose. No filler or overlapping tools are present.

Completeness5/5

For a read-only factual lookup service, the surface covers the main entry points: search by model/brand/size, exact model specification lookup, and reverse lookup by VESA pattern. There are no obvious dead ends for the domain.

Resources