Skip to main content
Glama

Server Details

Fail-closed refund, cancellation, return, and trial checks for 100 US subscription vendors.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
decidefyi/decide
GitHub Stars
1
Server Listing
decide

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

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct policy evaluation: cancellation penalty, refund eligibility, return eligibility, and trial terms. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., cancellation_penalty, refund_eligibility) using snake_case, making them predictable.

Tool Count5/5

With 4 tools, the count is well-scoped for a policy evaluation server, covering key subscription lifecycle events without being excessive.

Completeness4/5

The tools cover cancellation, refund, return, and trial terms, which are the main evaluation points for US consumer subscriptions. A minor gap might be missing tools for billing changes or plan modifications, but the surface is largely complete for the stated purpose.

Available Tools

4 tools
cancellation_penaltyCheck cancellation penaltyA
Read-onlyIdempotent
Inspect

Evaluate whether cancelling a US consumer subscription incurs a penalty or lock. Returns UNKNOWN when billing cadence is required or the policy needs manual review.

ParametersJSON Schema
NameRequiredDescriptionDefault
planYesPlan type. Currently only 'individual' plans are supported.
regionYesRegion code. Currently only 'US' is supported.
vendorYesVendor identifier (lowercase, underscore-separated).
billing_cadenceNoRequired when the vendor applies different cancellation terms to monthly and annual plans.

Output Schema

ParametersJSON Schema
NameRequiredDescription
codeYes
policyNo
vendorNo
messageYes
penaltyNo
verdictYes
notice_daysNo
source_hashNo
evaluated_atNo
rules_versionNo
policy_versionNo
billing_cadenceNo
rulebook_resultNo
required_contextNo
policy_source_urlNo
policy_last_checkedNo
policy_source_notesNo
policy_last_verified_utcNo
Behavior4/5

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

Annotations declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, indicating a safe read operation. The description adds behavioral context by noting that the tool may return UNKNOWN when billing cadence is required or manual review is needed, which is not covered by annotations alone.

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 the main purpose, and each sentence contributes necessary information. No wasted words.

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 (not shown but stated), the return values are documented elsewhere. The description covers the essential purpose and the special UNKNOWN case. All parameters are described in the schema, so no gaps remain.

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% with each parameter having a description in the schema. The description mentions 'billing_cadence' as required for some vendors, which is already in the schema. Thus, the description adds no meaningful semantic value beyond the schema.

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 'Evaluate' and the resource 'cancelling a US consumer subscription incurs a penalty or lock'. It specifies that the tool returns UNKNOWN in certain cases, and it is distinct from sibling tools which handle refunds, returns, and trial terms.

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 context by stating when UNKNOWN is returned (when billing cadence is required or policy needs manual review). However, it does not explicitly state when to use this tool over siblings, though the purpose is self-evident given the sibling names.

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

refund_eligibilityCheck refund eligibilityA
Read-onlyIdempotent
Inspect

Evaluate a US consumer subscription refund against versioned source-backed rules. Returns UNKNOWN when required conditions are absent or the vendor requires approval or manual policy review.

ParametersJSON Schema
NameRequiredDescriptionDefault
planYesPlan type. Currently only 'individual' plans are supported.
regionYesRegion code. Currently only 'US' is supported.
vendorYesVendor identifier (lowercase, underscore-separated).
days_since_purchaseYesNumber of days since the subscription was purchased.
qualifying_conditions_metNoRequired when the vendor policy has source-specific conditions such as first purchase, unused benefits, or an eligible annual plan.

Output Schema

ParametersJSON Schema
NameRequiredDescription
codeYes
vendorNo
messageYes
verdictYes
refundableNo
source_hashNo
window_daysNo
evaluated_atNo
rules_versionNo
policy_versionNo
rulebook_resultNo
required_contextNo
policy_source_urlNo
days_since_purchaseNo
policy_last_checkedNo
policy_source_notesNo
policy_last_verified_utcNo
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true. The description adds value by explaining the UNKNOWN return condition when required conditions are absent or vendor requires approval, which goes beyond annotation data.

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 sentences front-loaded with core purpose and key behavioral detail (UNKNOWN return). Every sentence is meaningful and there is no fluff.

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?

With full schema coverage and an output schema present, the description adequately covers the tool's purpose and key behavior. It could mention the versioned nature of rules more explicitly, but overall it is complete enough.

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% with detailed parameter descriptions. The tool description does not add new parameter semantics beyond what the schema provides, so baseline score of 3 is appropriate.

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 evaluates US consumer subscription refund eligibility against versioned source-backed rules. It specifies the verb 'evaluate', the resource 'subscription refund', and distinguishes from sibling tools like cancellation_penalty or return_eligibility.

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 implies use for checking refund eligibility but does not explicitly state when to avoid using it or mention alternatives. The sibling tool names provide context, but the description itself lacks exclusion guidance.

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

return_eligibilityCheck return eligibilityA
Read-onlyIdempotent
Inspect

Evaluate whether a US consumer subscription purchase can be reversed under versioned source-backed rules. Returns UNKNOWN when required conditions are absent or manual review is required.

ParametersJSON Schema
NameRequiredDescriptionDefault
planYesPlan type. Currently only 'individual' plans are supported.
regionYesRegion code. Currently only 'US' is supported.
vendorYesVendor identifier (lowercase, underscore-separated).
days_since_purchaseYesNumber of days since the subscription was purchased.
qualifying_conditions_metNoRequired when the vendor policy has source-specific conditions such as first purchase, unused benefits, or an eligible annual plan.

Output Schema

ParametersJSON Schema
NameRequiredDescription
codeYes
methodNo
vendorNo
messageYes
verdictYes
returnableNo
return_typeNo
source_hashNo
evaluated_atNo
rules_versionNo
policy_versionNo
rulebook_resultNo
required_contextNo
policy_source_urlNo
return_window_daysNo
days_since_purchaseNo
policy_last_checkedNo
policy_source_notesNo
policy_last_verified_utcNo
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description adds key behavioral detail: the tool returns UNKNOWN when conditions are absent or manual review is needed, enhancing 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?

Two sentences, no redundant words, front-loaded with the action and scope. Every sentence adds value.

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 5 parameters (4 required) and an output schema, the description is complete enough. It mentions the UNKNOWN return value, which compensates for not describing output structure in detail. Lacks mention of the optional qualifying_conditions_met parameter, but schema covers it.

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 the description does not need to compensate. It adds minimal semantics beyond schema (e.g., 'US consumer subscription' context), meeting baseline expectations.

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 evaluates return eligibility for US consumer subscriptions under versioned rules, explicitly distinguishing it from sibling tools like refund_eligibility and cancellation_penalty by mentioning 'reversed' and 'UNKNOWN' outcome.

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?

Description implies usage for checking eligibility before reversal but lacks explicit when-not-to-use or alternative selection guidance among siblings (cancellation_penalty, refund_eligibility, trial_terms).

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

trial_termsCheck trial termsA
Read-onlyIdempotent
Inspect

Evaluate a live US consumer subscription trial offer. Supply observed availability, duration, card, and auto-conversion facts; the tool returns UNKNOWN instead of inferring current offers from static data.

ParametersJSON Schema
NameRequiredDescriptionDefault
planYesPlan type. Currently only 'individual' plans are supported.
regionYesRegion code. Currently only 'US' is supported.
vendorYesVendor identifier (lowercase, underscore-separated).
offer_confirmedNoFor account- or promotion-specific trials, whether a live offer has been confirmed for this account.
observed_trial_daysNoTrial duration shown by the confirmed live offer. Required when offer_confirmed is true for a variable offer.
observed_auto_convertsNoWhether the confirmed live offer converts to a paid subscription after the trial.
observed_card_requiredNoWhether the confirmed live offer requires a payment card.

Output Schema

ParametersJSON Schema
NameRequiredDescription
codeYes
vendorNo
messageYes
verdictYes
trial_daysNo
source_hashNo
evaluated_atNo
auto_convertsNo
card_requiredNo
rules_versionNo
policy_versionNo
rulebook_resultNo
trial_availableNo
required_contextNo
policy_source_urlNo
policy_last_checkedNo
policy_source_notesNo
policy_last_verified_utcNo
Behavior4/5

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

Beyond the annotations (readOnly, idempotent, non-destructive), the description adds key behavior: the tool returns UNKNOWN if current offers are not supplied via observations, emphasizing it does not infer from static data. This is useful context.

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: the first states the purpose, the second explains the key behavior and inputs. It is front-loaded, concise, and contains no fluff.

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 the large vendor enum and many optional parameters, the description covers the essential points. It explains the core behavior (returns UNKNOWN) and what to supply. The output schema (not shown) likely details return structure, so no omission is critical.

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 100% schema description coverage, the baseline is 3. The description reinforces that parameters represent observed facts and should be supplied when available, adding context beyond the schema's descriptions.

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 evaluates live US consumer subscription trial offers. It specifies the action (evaluate) and the resource (trial offer), and distinguishes from sibling tools (cancellation, refund, return) by focusing on trial terms.

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 tells users to supply observed facts (availability, duration, card, auto-conversion) and notes the tool returns UNKNOWN rather than inferring. This guides use, but it does not explicitly state when NOT to use the tool or contrast with siblings beyond the core purpose.

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.