Skip to main content
Glama
kleinicke

3D Visualizer

open_3d_url

Load 3D models from direct HTTP(S) URLs into an interactive 3D scene for inspection, comparison, and export. Supports multiple files, gzip, and optional scene appending.

Instructions

Download one URL or a list of direct HTTP(S) 3D files into one scene; pass scene_id to append. Self-contained models recommended; external resources are not fetched implicitly. Download each file on the local MCP server and open it inline. This makes a network request to the supplied URL and redirects; no browser CORS is needed. Supports the same formats as local files plus gzip. Supply filename for extensionless/signed URLs. Defaults to a 256 MiB transfer/decompressed limit, at most 1 GiB; 30-second socket and 120-second transfer limits. No login/cookies or webpage extraction. Temporary files are deleted when the scene closes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
filenameNo
scene_idNo
max_bytesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

The description goes well beyond the annotations (readOnlyHint=false, openWorldHint=true, destructiveHint=false) by detailing the network request and redirect behavior, no CORS requirement, size limits (256 MiB default, 1 GiB max), timeouts (30s socket, 120s transfer), and cleanup (temporary files deleted when scene closes). It also discloses that login/cookies and webpage extraction are not supported, and that external resources are not fetched implicitly. This is thorough and consistent with 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.

Conciseness5/5

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

The description is a single well-organized paragraph that front-loads the primary action and then provides necessary details in a logical order: formats, network behavior, parameters, limits, and cleanup. Every sentence contributes substantive information—there is no filler or redundant restatement of the tool name or schema.

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?

Given that an output schema exists (so return format is covered), the description addresses all essential aspects: input types, network semantics, limits, parameter usage, and lifecycle (temporary file deletion). It also mentions supported formats and gzip. An agent has everything it needs to decide when to use this tool and how to invoke it correctly without additional assumptions.

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?

With 0% schema description coverage, the description compensates by explaining key parameters: filename is for extensionless/signed URLs, scene_id is to append to an existing scene, and max_bytes has a default and maximum (256 MiB / 1 GiB). It also clarifies that url can be a single string or an array. This adds meaning beyond the raw schema types and defaults, though it does not explicitly describe the url parameter's expected format beyond 'direct HTTP(S)'.

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 a precise verb (download and open) and resource (HTTP(S) 3D files), and clarifies that it creates a scene or appends to one via scene_id. It clearly differentiates from sibling open_3d_files by focusing on remote URLs and network behavior, while explicitly noting that external resources are not fetched implicitly. This gives an agent a distinct mental model of the tool's role.

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 provides implicit usage context: it is for direct file URLs, not for webpage extraction or authenticated resources, and recommends self-contained models. It mentions that external resources are not fetched implicitly, implying that local files should go to a different tool, but it does not explicitly name alternatives or give hard when-to-use vs. when-not-to-use rules. Still, the guidance is clear enough for an agent to select it for URL-based 3D content.

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