Skip to main content
Glama

Handiworks

Server Details

MCP tools for AI agents: render URLs to image/PDF, check link health, convert HTML/CSV/JSON.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.8/5 across 3 of 3 tools scored.

Server CoherenceC
Disambiguation2/5

The 'convert' and 'render' tools both offer html-to-png and html-to-pdf functionality using real browsers, making them nearly indistinguishable for those tasks. 'check_link' is distinct, but the overlap between the other two creates confusion.

Naming Consistency2/5

Tool names follow no consistent pattern: 'check_link' uses verb_noun with underscore, while 'convert' and 'render' are single verbs without underscores. Mixing conventions reduces predictability.

Tool Count3/5

With only 3 tools, the server feels minimal. The overlap between 'convert' and 'render' suggests the count could be reduced by merging, while other utilities are absent. Not extreme, but borderline for a general-purpose server.

Completeness2/5

The tool surface is sparse and has notable gaps: no URL validation, no text extraction from pages, no batch or advanced conversion options. The overlap between tools further indicates an incomplete design.

Available Tools

3 tools
convertConvert content between formatsAInspect

Convert content between formats. Modes: html-to-pdf, html-to-png (real browser), csv-to-json, json-to-csv. PDF/PNG return as attachment/image; data modes return text.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeYesConversion to perform.
contentYesThe input content: HTML, CSV, or JSON depending on mode.
headersNoFor csv-to-json: treat the first row as column headers.
delimiterNoField delimiter for CSV modes.,
pdfFormatNoPaper size for html-to-pdf.A4
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses that html-to-png uses a real browser, which is a key behavioral detail. However, it does not discuss error handling, size limits, or idempotency, leaving some gaps.

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, front-loaded with purpose and modes, and includes key return type distinctions. Every word is necessary and efficient.

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 output schema, the description covers return types for each mode category. It specifies all 4 modes and return formats. For a tool with 5 parameters, this is fairly complete, though it could mention that content must match the selected mode.

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%, so all 5 parameters are described in the schema. The description does not add new information about individual parameters but provides context about return types per mode, which is not in the schema. This is adequate but not exceptional.

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 clearly states the tool converts content between formats and lists all four specific modes (html-to-pdf, html-to-png, csv-to-json, json-to-csv), using a specific verb and resource. It implicitly distinguishes from sibling tools like 'render' which likely handles rendering rather than conversion.

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 mentions return types (attachment/image vs text) but does not explicitly state when to use this tool over siblings like 'check_link' or 'render'. The usage context is implied by the mode list but lacks when-not or alternative guidance.

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

renderRender URL to screenshot or PDFAInspect

Render a web page to a PNG/JPEG screenshot or a PDF using a real headless browser. Returns the image inline (base64) or the PDF as an embedded resource. Results are cached for 24h.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe absolute URL to render (must include https:// or http://).
freshNoBypass the 24h cache and force a fresh render.
widthNoViewport width in pixels.
formatNoOutput format. png/jpeg return an image; pdf returns a PDF document.png
heightNoViewport height in pixels.
fullPageNoFor screenshots: capture the entire scrollable page instead of just the viewport.
pdfFormatNoPaper size, used only when format is pdf.A4
waitUntilNoNavigation completion signal before capturing.networkidle2
Behavior3/5

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

With no annotations, the description must disclose behavioral traits. It reveals output formats (base64 image, embedded PDF), caching (24h), and use of a headless browser. However, it does not mention error handling, rate limits, or what happens on invalid URLs, which would improve transparency.

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 (38 words), efficiently front-loading the core purpose and output. Every sentence adds value with no redundant information.

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

Completeness3/5

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

With 8 parameters and no output schema, the description is somewhat incomplete. It covers key aspects (purpose, formats, caching) but lacks details on error behavior, response structure, or when to use specific parameters (e.g., pdfFormat vs format).

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%, so parameters are well-documented in the schema. The description adds only general context (output formats, caching) but does not elaborate on parameter usage beyond what the schema provides, meriting a baseline score of 3.

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 clearly states the action: 'Render a web page to a PNG/JPEG screenshot or a PDF using a real headless browser.' It specifies the resource (web page) and verb (render), and distinguishes from siblings like check_link and convert by focusing on rendering via a browser.

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

Usage Guidelines2/5

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

No explicit guidance on when to use this tool versus siblings or alternatives. It does not mention prerequisites, limitations, or when not to use it, leaving the agent to infer usage.

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

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources