Skip to main content
Glama

Server Details

Download DocSend and Papermark decks as PDF or PPTX, including email-gated and protected links.

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 4.5/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

The two tools have completely distinct purposes: one checks account status, the other extracts decks. No functional overlap.

Naming Consistency4/5

Both names are in snake_case and descriptive, but 'account_status' is a noun_noun pair while 'deckextract' is a compound verb_noun. Minor inconsistency lowers perfection.

Tool Count3/5

With only two tools, the surface feels thin for a service that likely needs operations like listing extractions or managing quota. However, core extraction and account inquiry are covered.

Completeness2/5

Missing obvious tools like retrieval history, deletion, or plan management. The user cannot view past extractions or check extraction status without the Pro analysis feature.

Available Tools

2 tools
account_statusCheck your DeckExtract account statusA
Read-onlyIdempotent
Inspect

Returns the calling account's plan (free or Pro), whether it's signed in, and this month's extraction usage and remaining quota. Takes no input.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
planYes'unlimited' is the Pro plan
emailNo
isProYes
remainingYesExtractions left this month; null when unlimited
monthlyLimitYesFree-plan monthly cap; null when unlimited
monthlyUsageYesExtractions used this calendar month
authenticatedYesWhether the caller is signed in
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds value by specifying the exact returned fields (plan, sign-in status, extraction usage, quota), providing context beyond 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 two sentences, efficiently conveying the purpose and output. Every sentence is necessary, and the key information is front-loaded.

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 zero parameters, existing annotations, and an output schema (not provided but implied to cover return structure), the description is fully complete. It covers what the tool returns without needing more detail.

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 no parameters, and schema coverage is 100%. By the rule, zero parameters receive a baseline of 4. The description correctly states it takes no input, so no further param info 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 returns account plan, sign-in status, and usage/quota. It uses a specific verb ('returns') and distinguishes from sibling 'deckextract' which is likely a different operation.

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 notes it takes no input, making its usage straightforward. It lacks explicit when-to-use guidance, but given zero parameters and clear purpose, the context is adequate.

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

deckextractExtract a DocSend or Papermark deckAInspect

Extract a deck from a DocSend or Papermark sharing link. Returns a temporary download URL and a readable deckextract://deck/... resource for the PDF/PPTX (or a ZIP for data rooms). Pass analyze: true (requires a DeckExtract Pro account) to also return structured deck data. Typical extraction takes 15-90 seconds; the public API is rate limited to 5 extractions per IP per 30 minutes.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe deck sharing link, e.g. https://docsend.com/view/... or https://papermark.com/view/...
emailNoEmail to present to email-gated decks. If omitted, an ephemeral address is generated automatically when the deck requires one.
formatNoOutput format (default 'pdf')
analyzeNoIf true, also return structured analysis of the deck (company, team, round, metrics, market, competition). Requires a DeckExtract Pro account.
passwordNoPasscode for passcode-protected decks

Output Schema

ParametersJSON Schema
NameRequiredDescription
formatYes
analysisNoStructured deck analysis (present when analyze=true succeeded)
expiresAtYesISO timestamp when the URL/resource expires
sizeBytesYes
sourceUrlYes
downloadUrlYesTemporary URL of the extracted deck
resourceUriYesMCP resource URI (deckextract://deck/...) to read the bytes via resources/read
analysisErrorNoSet when extraction succeeded but analysis could not be produced
Behavior4/5

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

Beyond annotations (non-readonly, non-destructive), the description discloses extraction duration, rate limiting, ephemeral email generation, and Pro requirement for analysis. It does not contradict annotations and adds useful behavioral context like latency.

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 that cover purpose, outputs, optional features, and constraints. Every sentence is necessary and front-loaded with the primary action. No extraneous information.

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 the tool's complexity (5 params, optional analysis, rate limits), the description adequately covers inputs, outputs, constraints, and special behaviors. Since an output schema exists, return values don't need detailed description.

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 schema covers all five parameters with descriptions. The description adds overall context about output format and behavior (e.g., ephemeral email for email-gated decks, ZIP for data rooms). This enriches understanding beyond the schema alone.

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 extracts a deck from a DocSend or Papermark link and returns a temporary download URL and resource identifier. It distinguishes itself from the only sibling (account_status) by specifying the exact resource and platform.

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?

Provides clear context on when to use (given a sharing link) and mentions the Pro account requirement for analysis. It also notes typical extraction time and rate limits. However, it doesn't explicitly state when not to use or alternatives, which is acceptable given the single sibling.

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