Skip to main content
Glama

Server Details

Capture batches of public web pages in a real browser and download the screenshots as a zip.

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.9/5 across 5 of 5 tools scored. Lowest: 3.3/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: payment, screenshot rendering, account balance, batch status polling, and sample preview. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent 'verb_noun' pattern in snake_case, such as 'create_screenshot_batch' and 'get_account_balance', making the set predictable.

Tool Count5/5

With 5 tools covering core functionalities (screenshot creation, status checking, account management, and payment), the set is well-scoped without being too sparse or overwhelming.

Completeness4/5

The tool surface covers the main workflow: creating batches, checking results, managing credits, and purchasing. A minor gap is the lack of a cancel or delete operation for batches, but this is not critical.

Available Tools

5 tools
create_credit_checkoutAInspect

Create a hosted Stripe Checkout URL for a prepaid credit pack. This can lead to a charge, but only after the user opens the URL and confirms payment on Stripe. Ask the user before calling it and never handle card details.

ParametersJSON Schema
NameRequiredDescriptionDefault
packYesstarter: $5 for 2,500 screenshots ($0.002 each); growth: $20 for 15,000 screenshots ($0.0013 each); scale: $75 for 75,000 screenshots ($0.001 each); bulk: $250 for 350,000 screenshots ($0.000714 each)
batch_idNoOptional. Resumes this batch as soon as the payment lands.
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses that the tool only creates a URL and that a charge can occur only after user confirmation on Stripe. This prevents misinterpretation that the tool itself charges. It also warns against handling card details. Slightly more detail on URL expiry or idempotency 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, front-loading the core purpose and then adding behavioral and usage context. Every sentence serves a distinct purpose with no wasted words.

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 and no annotations, the description provides enough context for an agent to select and invoke the tool. It covers the primary behavior and safety. Minor omission: it doesn't mention that the URL is likely returned as output, but that is typical for such tools.

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%, and the schema already provides detailed descriptions for both parameters (pack with pricing, batch_id with resumption behavior). The tool description adds no extra information beyond what's in the schema, so it meets the baseline 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 verb 'Create a hosted Stripe Checkout URL for a prepaid credit pack.' It specifies the resource (prepaid credit pack) and the action (create URL). This distinguishes it from sibling tools like create_screenshot_batch (different resource) and get_account_balance (read-only).

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 explicit usage guidance: 'Ask the user before calling it and never handle card details.' This clearly indicates when to use the tool (with user consent) and gives a safety rule. While it doesn't contrast with alternatives, the unique purpose and safety instructions make it clear.

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

create_screenshot_batchAInspect

Render a list of web pages in a real browser. Returns a batch id to poll. The first 10 screenshots each month are free, metered per network address rather than per key, so issuing another key does not reset them. Beyond that the batch pauses and reports how many credits it needs.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoLabel for the batch, shown on the results page.
urlsYesPublic http or https addresses. Bare domains are accepted and normalised.
widthNo
formatNoOne file per URL, collected in a zip. PDF output is disabled on this deployment.png
heightNo
delay_msNoExtra settle time after the page reports it has loaded.
dark_modeNo
full_pageNoCapture the whole scrollable page rather than just the viewport. Off by default; a long page costs the same credit but takes much longer to render.
device_scale_factorNoUse 2 for retina density output.
block_cookie_bannersNo
Behavior4/5

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

No annotations exist, so description carries full burden. It discloses that rendering happens in a real browser, the free tier limit, metering per network address, and that the batch pauses when credits are exhausted. However, it does not mention error conditions or what happens on failure, reducing transparency slightly.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

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

Two sentences cover the core action and key metering behavior. The most important action ('Render ... Returns batch id') is front-loaded. However, it could be slightly more structured by separating parameters from limitations, but overall it's efficient.

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?

The tool has 10 parameters and no output schema. The description omits the return format (beyond batch ID) and does not clarify which parameters are critical. For a complex batch creation tool, more detail on usage patterns (e.g., typical values, interaction between full_page and delay) would improve completeness.

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 60%; the description adds meter pricing context but does not improve understanding of individual parameters beyond what the schema already provides. For the 40% of parameters without schema descriptions (e.g., dark_mode, block_cookie_banners), the description offers no help, so it does not compensate.

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?

Description clearly states the tool renders web pages in a real browser and returns a batch ID. The verb 'render' and resource 'web pages' are specific. Sibling tools are distinct (e.g., get_screenshot_batch retrieves results, create_credit_checkout deals with payments), so no confusion.

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 implies polling via get_screenshot_batch ('Returns a batch id to poll') but does not explicitly state when to use this tool versus alternatives, e.g., when to use list_sample_captures instead. No when-not-to or exclusion criteria provided.

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

get_account_balanceAInspect

Screenshot credits and free monthly allowance remaining for the calling identity.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

With no annotations, the description carries the full burden. It clearly indicates this is a read operation (no side effects) by specifying it returns credits and allowance. However, it does not disclose any potential latency or authentication requirements, though these are likely implicit.

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 sentence of 12 words, no filler, front-loaded with key information. Every word 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 tool with no parameters and no output schema, the description is fairly complete. It specifies what is returned and for whom. However, it does not detail the return format (e.g., data types, structure), which would be helpful given no output schema.

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?

There are zero parameters, so schema coverage is 100%. Per guidelines, baseline for 0 params is 4. The description adds no parameter information, but none is needed.

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 retrieves 'screenshot credits and free monthly allowance remaining' for the calling identity. It uses a specific verb ('get') and resource ('account balance'), and is distinct from sibling tools like 'create_credit_checkout' or 'get_screenshot_batch'.

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 implies usage for checking remaining credits/allowance, but does not explicitly state when to use this tool vs alternatives. No exclusion criteria or alternative tool references are provided, leaving the agent to infer context from tool names.

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

get_screenshot_batchAInspect

Read the state and per URL results of a batch created by this client, including the download URL once anything has rendered.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes
Behavior4/5

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

No annotations provided, so the description carries the burden. It discloses it's a read operation that returns state, per-URL results, and download URLs after rendering. No destructive behavior mentioned, which matches expected read-only nature.

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?

Single sentence, no unnecessary words. Front-loaded and efficient.

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 no output schema and no annotations, the description is adequate but could be more complete. It mentions state, per-URL results, and download URLs, but doesn't describe the state values or result structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter 'id' is not described in the schema (0% coverage). The description adds 'created by this client', but lacks details on what the ID represents or format constraints. Schema includes pattern and examples, but description doesn't explain semantics.

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 reads state and per URL results of a batch, including download URLs after rendering. It distinguishes from sibling tools like create_screenshot_batch and list_sample_captures.

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?

Usage is implied (use after creating a batch), but no explicit when-to-use or alternatives are given. Siblings suggest it's the read counterpart, but that's not stated.

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

list_sample_capturesBInspect

Public sample captures this service refreshes on a schedule. Useful for showing a user what the output looks like before they spend anything.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
Behavior3/5

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

With no annotations, the description carries full burden. It discloses that captures are public and refreshed on a schedule, and that no spending is involved. However, it does not detail behaviors like pagination, ordering, rate limits, or authentication requirements. The transparency is adequate for a simple list tool but could be more thorough.

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 only two sentences with no wasted words. The first sentence defines the resource and its dynamic nature; the second gives a clear use case. It is front-loaded and efficient.

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?

Given no output schema and no annotations, the description provides essential context (public, refreshed, preview use) but omits return format, ordering, or any constraints beyond the limit. It is moderately complete for a simple list tool but could be improved by describing the output structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has one parameter (limit) with default 12, max 100, min 1. Schema description coverage is 0%, so the description should add meaning but does not mention the parameter's purpose or behavior. The agent must rely solely on the schema, which is minimal. The description fails to compensate for the lack of schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states this tool lists public sample captures that are refreshed on a schedule. It identifies the resource ('public sample captures') and implies the action (listing). The mention 'before they spend anything' differentiates it from sibling tools like create_credit_checkout or get_screenshot_batch, which involve spending or specific batches.

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 suggests using this tool for previewing output before spending, which gives some context. However, it does not explicitly state when not to use this tool or mention alternatives like get_screenshot_batch for specific batches. The guidance is implied but lacks explicit exclusions or comparisons.

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