Skip to main content
Glama

ParaSure

Server Details

AI-native parametric insurance infrastructure. Assess weather risk, generate quotes, bind policies, and monitor triggers programmatically. Live paid endpoint via x402 (USDC on Solana).

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.3/5 across 6 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: risk assessment, quoting, binding, trigger checking, status, and carrier listing. No overlaps or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., assess_weather_risk, bind_policy, check_trigger), making them predictable.

Tool Count5/5

6 tools cover the essential parametric insurance workflow (assess, quote, bind, check trigger, status, list carriers) without being excessive or thin.

Completeness5/5

The tool surface covers the full lifecycle: risk assessment, quoting, policy binding, trigger monitoring, and status retrieval. No obvious gaps for the stated purpose.

Available Tools

6 tools
assess_weather_riskAssess Weather RiskA
Read-only
Inspect

[$0.10 USDC/call · Solana USDC · x402] Entry point for every agent flow. Given a business location and type, returns a weather risk score (0-1), the top perils ranked by severity, historical frequency data, and an overall risk level (low/moderate/high/severe). Powered by 5 years of Open-Meteo historical data — returns real data, not sandbox. Always call this first before requesting a quote.

ParametersJSON Schema
NameRequiredDescriptionDefault
locationYesCity and state of the business, e.g. 'Tampa, FL' or 'Kansas City, MO'.
business_typeYesType of business. Determines which perils are most relevant.
Behavior5/5

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

Discloses real data, not sandbox, pricing ($0.10 USDC/call), data source (5 years Open-Meteo), consistent with readOnlyHint annotation.

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?

Single paragraph with key info front-loaded, but could be more structured; no waste, but not perfectly concise.

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?

Covers purpose, inputs, outputs, data source, and usage order; lacks explicit location scope or error conditions, but adequate for scope.

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?

Schema coverage is 100%, but description adds context that business_type determines relevant perils, above baseline.

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?

Clearly states it is the entry point for agent flows, returns weather risk score and perils, distinguishing itself from quote and policy tools.

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

Usage Guidelines5/5

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

Explicitly says 'Always call this first before requesting a quote' and describes when to use it as first step, with cost and data authenticity.

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

bind_policyBind PolicyAInspect

Accept a quote and initiate a bind. This activates the policy and begins trigger monitoring. Returns policy_id, effective and expiration dates, trigger details, and a confirmation. Pass quote_id from get_parametric_quote. This is where coverage begins.

ParametersJSON Schema
NameRequiredDescriptionDefault
quote_idYesQuote ID returned by get_parametric_quote.
broker_emailYesEmail of the placing broker.
payment_methodYesPayment method for the policy premium. Sandbox: no charge applied.
client_business_nameYesLegal name of the insured business.
client_contact_emailYesEmail address of the client contact.
Behavior4/5

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

Annotations indicate readOnlyHint=false, confirming this is a write operation. The description adds behavioral context: 'activates the policy and begins trigger monitoring', explaining the effect beyond what annotations provide. No contradictions.

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 very concise: four short sentences that front-load the action, then explain effects, prerequisites, and returns. Every sentence adds value with no redundancy.

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 required parameters and no output schema, the description covers the return values (policy_id, dates, trigger details, confirmation) and the key prerequisite. It is mostly complete, though it could mention that payment_method 'sandbox: no charge' is already in schema description.

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?

The input schema has 100% description coverage, so the baseline is 3. The description only adds context for 'quote_id' (stating its source), but other parameters are adequately described in the schema. No significant additional meaning is added.

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 ('Accept a quote and initiate a bind') and the resource (policy). It distinguishes from siblings by mentioning 'activate the policy and begin trigger monitoring', which is unique among sibling tools like 'get_parametric_quote' and 'get_policy_status'.

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 explicitly tells the agent to 'Pass quote_id from get_parametric_quote', providing a clear prerequisite. However, it does not specify when not to use this tool or mention alternatives, such as when a quote is not ready.

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

check_triggerCheck TriggerA
Read-only
Inspect

Check whether a bound policy's parametric trigger is currently met. Returns the current observed weather value versus the trigger threshold, whether the trigger is met, and the data source. In production this calls NOAA and ERA5. Currently returns simulated sandbox data.

ParametersJSON Schema
NameRequiredDescriptionDefault
policy_idYesPolicy ID returned by bind_policy.
Behavior5/5

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

Discloses returns (observed value vs threshold, met status, data source) and notes production vs sandbox behavior, adding context beyond readOnlyHint annotation.

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?

Three sentences: front-loaded purpose, return details, and context. 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?

For a simple one-param tool, covers purpose, return values, data sources, and sandbox note. No output schema needed as description 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% and parameter description is clear; description does not add further semantics beyond the schema, so baseline 3 applies.

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?

Clearly states the tool checks whether a bound policy's parametric trigger is met, distinguishing it from siblings like bind_policy (binding) and assess_weather_risk (general risk assessment).

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?

Implies use after bind_policy via the policy_id parameter, but lacks explicit when-not or alternatives. The sibling context helps, but no direct exclusion of invalid policies.

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

get_parametric_quoteGet Parametric QuoteAInspect

Request a parametric insurance quote for a specific peril and coverage period. Returns quote_id, carrier, premium, trigger threshold, payout amount, and coverage terms. Pass the quote_id to bind_policy to activate the policy.

ParametersJSON Schema
NameRequiredDescriptionDefault
locationYesCity and state of the business, e.g. 'Miami, FL'.
peril_typeYesWeather peril to insure against.
payout_limitYesMaximum payout amount in USD (e.g. 50000 for $50,000).
revenue_bandNoOptional. Annual revenue band for premium calibration.
coverage_period_endYesCoverage end date in YYYY-MM-DD format.
coverage_period_startYesCoverage start date in YYYY-MM-DD format.
Behavior3/5

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

Annotations provide only readOnlyHint=false, and the description confirms it's a quote request (non-read). It adds context about what is returned (quote_id, carrier, etc.) but does not disclose potential side effects, auth needs, or rate limits beyond what is implied.

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, each earning its place. The first states purpose and outputs; the second provides a critical usage link to bind_policy. 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 the complexity (6 params, no output schema), the description covers purpose, returns, and next step. It could mention the optional revenue_band field or explain trigger thresholds, but it is fairly complete for a quoting tool.

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 baseline is 3. The description does not add new meaning beyond the schema; it merely summarizes the return fields, not the parameters. No additional semantics are provided for parameters.

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 'Request' and the resource 'parametric insurance quote for a specific peril and coverage period.' It lists the returned data and distinguishes from sibling tools like bind_policy by noting the next step.

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 explicitly says to pass the quote_id to bind_policy to activate, indicating when to use this tool and the subsequent action. However, it does not provide explicit when-not-to-use guidance or contrast with siblings like assess_weather_risk.

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

get_policy_statusGet Policy StatusA
Read-only
Inspect

Get the full current status of a bound parametric policy: active, triggered, settled, or expired. Returns client details, trigger threshold, premium paid, payout amount, coverage dates, and the complete trigger event history.

ParametersJSON Schema
NameRequiredDescriptionDefault
policy_idYesPolicy ID returned by bind_policy.
Behavior4/5

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

Annotations already declare readOnlyHint=true, indicating a safe read operation. The description adds value by detailing the exact statuses and data returned (client details, trigger threshold, etc.), providing behavioral context beyond the annotation.

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, concisely stating the purpose and listing returned data. It is front-loaded with the core action and contains no superfluous 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 the simple tool (one parameter, no output schema), the description fully explains what is returned, including specific statuses and data fields. No additional context is necessary for correct invocation.

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% (the only parameter, policy_id, is fully described in the schema). The description does not add any new information about the parameter, so baseline 3 applies.

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 specifies exactly what the tool does: get the full current status of a bound parametric policy, listing possible statuses and the data returned. This clearly distinguishes it from siblings like check_trigger or bind_policy.

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?

While it implies use after binding a policy, there is no explicit guidance on when to use this versus alternative tools (e.g., check_trigger) or when not to use it. The description lacks exclusion criteria or alternative recommendations.

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

list_carriersList CarriersA
Read-only
Inspect

List all carriers currently registered on the ParaSure platform. Returns carrier name, supported perils, supported regions, and available products. Free — no payment required. Use this to discover coverage options before calling get_parametric_quote.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already provide readOnlyHint. Description adds 'Free — no payment required,' which is useful behavioral context beyond the annotation, and explains what the tool returns.

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?

Three concise sentences: purpose, free cost, and usage guidance. No fluff, each sentence 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?

Given no output schema, description lists returned fields (carrier name, perils, regions, products). Sufficient for a list-discovery tool, though output structure details missing.

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?

No parameters; schema coverage is 100%. Per guidelines, 0 parameters yields baseline 4, and description adds no extra param info which is unnecessary.

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 it lists all carriers with specific details (name, perils, regions, products). Distinct from sibling tools like get_parametric_quote or bind_policy, filling a discovery role.

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?

Explicitly says to use before calling get_parametric_quote, providing clear context. No mention of when not to use, but the sibling list and tool name imply it's for initial exploration.

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