Skip to main content
Glama

svg-bar-chart-renderer

Generate deterministic SVG bar charts from labeled scalar data with automatic y-axis ticks, label spacing, and bar-width distribution. Returns schema-valid, escape-correct SVG with byte-identical output for identical input.

Instructions

Deterministic, paid-per-render SVG bar chart generator for LLM agents. Accepts labeled scalar data and layout options, performs exact geometry math (min/max normalization, nice-interval y-axis ticks, label spacing, bar-width distribution), and returns schema-valid, escape-correct SVG with identical input always yielding byte-identical output. Costs 0.015 USDC per call on eip155:8453, paid automatically from BASE_PRIVATE_KEY. Request body fields are tool-specific -- see https://svg-bar-chart-renderer.jannioura.workers.dev/openapi.json.

Input 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?

There are no annotations, so the description carries full behavioral burden. It discloses determinism, per-call cost, payment mechanism, exact geometry computation, escape-correct output, and byte-identical repeatability—far beyond a basic summary.

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 and front-loaded: the first sentence immediately establishes what the tool is, for whom, and its key constraints. Every following sentence adds critical operational or behavioral detail without rambling.

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?

Despite no output schema and no annotations, the description covers purpose, input categories, rendering behavior, determinism, cost, payment, and a documentation link. This is sufficient for an agent to decide to invoke the tool and know what to expect.

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?

The input schema is empty with additionalProperties true, and the parameter count is zero, so the baseline is 4. The description adds meaningful semantic categories ('labeled scalar data and layout options') and points to the OpenAPI spec for tool-specific field details.

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 specific resource and action: 'SVG bar chart generator' that accepts labeled scalar data and layout options and returns SVG. This clearly distinguishes it from unrelated sibling tools like markdown-extractor and burn-once-secret-vault.

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 intended use case is clear: an LLM agent that needs a deterministic, paid SVG bar chart from labeled scalar data. It doesn't explicitly compare against alternatives, but the sibling tools are so unrelated that no further routing is necessary.

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