Hive Insurance
Server Details
Agent liability insurance — claims, premiums, and on-chain payouts
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- srotzin/hive-mcp-insurance
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 3.8/5 across 4 of 4 tools scored.
Each tool has a clear, distinct purpose: quoting, binding, checking claim status, and verifying trigger conditions. No overlap or ambiguity between the four tools.
All tool names follow a consistent verb_noun pattern using snake_case (bind_policy, claim_status, parametric_trigger_check, quote_policy), making them predictable and easy to understand.
With 4 tools covering the core insurance workflow (quote, bind, claim status, trigger check), the count is reasonable for a focused parametric insurance server, though a few more operations could be added.
The tools cover the main lifecycle stages but lack operations like policy listing, cancellation, or updating. The missing update/delete operations are notable gaps, though the core flow is present.
Available Tools
4 toolsbind_policyAInspect
Bind a previously quoted policy. Settlement via x402 / USDC on Base, Ethereum, or Solana. Returns policy_id on success. Backend pending (Q3 2026).
| Name | Required | Description | Default |
|---|---|---|---|
| quote_id | Yes | Quote ID from quote_policy | |
| payer_did | Yes | DID of the agent or entity paying the premium |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears full burden. It honestly discloses the business logic (bind, settlement, return value) and the pending backend status (Q3 2026). 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, concise and front-loaded. Every sentence adds value: action, settlement, return value, and caveat. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 2-parameter tool with no output schema, the description covers purpose, usage context, return value, and a notable caveat (backend pending). It is fairly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 100% coverage with clear descriptions for both parameters. The description adds no additional detail beyond what the schema already provides, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the action ('Bind') and the resource ('previously quoted policy'). It distinguishes from siblings like 'quote_policy' which creates the quote, and 'claim_status' and 'parametric_trigger_check' which are unrelated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions settlement methods and the backend pending status, indicating the tool is not yet functional. It implies use after 'quote_policy' but does not explicitly state when-not or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
claim_statusAInspect
Check the status of a parametric insurance claim associated with a policy. Returns current state: pending / triggered / paid / disputed. Backend pending (Q3 2026).
| Name | Required | Description | Default |
|---|---|---|---|
| policy_id | Yes | Policy ID from bind_policy |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The verb 'Check' implies a read-only operation, which is appropriate. The description also discloses that the backend is pending, warning agents of incomplete functionality. No annotations are provided, so the description carries the transparency burden and does so adequately.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no fluff: first sentence states purpose and return states, second adds a backend note. Information is front-loaded and every word adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple status-check tool with one parameter and no output schema, the description covers purpose, possible states, and a notable caveat. It does not detail error conditions or return format, but those are reasonable omissions given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage (parameter policy_id described as 'Policy ID from bind_policy'). The description does not add further semantics beyond what the schema already provides, so baseline score 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action 'Check' and the resource 'status of a parametric insurance claim', and lists possible return states (pending/triggered/paid/disputed). It implicitly differentiates from siblings like bind_policy (creation) and parametric_trigger_check (trigger evaluation).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description indicates when to use the tool (to check claim status) and provides a usage caveat ('Backend pending Q3 2026'). However, it does not explicitly state when not to use it or compare directly to sibling tools like parametric_trigger_check.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
parametric_trigger_checkAInspect
Check whether a parametric oracle event hash satisfies the trigger condition for automatic claim payout. Returns boolean. Backend pending (Q3 2026).
| Name | Required | Description | Default |
|---|---|---|---|
| oracle_event_hash | Yes | SHA-256 hash of the oracle event to evaluate against trigger conditions |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose all behavioral traits. While it states the tool returns a boolean and the backend is pending, it does not clarify if the operation is read-only or if there are side effects. The lack of explicit behavioral disclosure leaves the agent with incomplete information.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two concise sentences: the first states the action and context, the second notes the return type and backend status. Every word serves a purpose with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple boolean check tool with one parameter and no output schema, the description covers the essential purpose, return type, and backend readiness. However, it lacks details on error handling or prerequisites, which could be valuable for an agent, but overall it is mostly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides a clear description of the only parameter 'oracle_event_hash' as a SHA-256 hash. With 100% schema coverage, the baseline is 3. The description adds context about the trigger condition but does not significantly enhance parameter understanding beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Check' and the specific resource 'parametric oracle event hash' with context 'trigger condition for automatic claim payout'. It also mentions the return type 'boolean', distinguishing it from siblings like 'bind_policy' and 'claim_status' which have different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking trigger conditions but provides no explicit guidance on when to use this tool versus alternatives, nor does it mention when not to use it. The 'Backend pending (Q3 2026)' note hints at unavailability but does not offer clear usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
quote_policyBInspect
Quote a parametric insurance policy. Returns a premium estimate for the given risk type, coverage amount (USD), and term length. Backend pending (Q3 2026).
| Name | Required | Description | Default |
|---|---|---|---|
| risk_type | Yes | Risk category (e.g. flight_delay, crop_yield, protocol_hack, weather) | |
| term_days | Yes | Policy term in days | |
| coverage_usd | Yes | Coverage amount in USD |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; the description mentions 'Backend pending (Q3 2026)' but does not clarify what that means for behavior (e.g., whether it works, returns errors, or is a stub). Other behavioral traits like idempotency or side effects are not disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise with two sentences, no filler, and front-loaded with the core action and output.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and pending backend status, the description is somewhat complete—states return type (premium estimate) but lacks explanation of error handling or what 'backend pending' implies for execution.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the description adds little beyond what the schema already provides. It reiterates parameter names but does not add new semantic details (e.g., format, constraints, or examples).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool quotes a parametric insurance policy and returns a premium estimate, distinguishing it from siblings like bind_policy or claim_status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives (e.g., bind_policy, parametric_trigger_check). The context of backend pending is mentioned but not explained in terms of usage limitations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!