Skip to main content
Glama

bidda-compliance

create_attestation

Create a signed, time-stamped record of which Bidda rules a person or AI agent relied on for a decision. Returns a record ID and a public verify URL so anyone can later confirm the record has not been changed. Useful for agents that must keep an audit trail of what they checked. Requires an active Bidda subscription: pass api_key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentYesThe system or AI agent that made the decision.
nodesYesnode_ids that were checked (max 50).
actionNoOptional: what the agent did.
api_keyNoOptional. Your Bidda subscription key. Prefer sending it as the x-bidda-api-key header (or Authorization: Bearer), which is what the auth settings in your MCP client configure; the header takes precedence over this argument. A free trial counts.
workflow_steps_followedNoOptional: steps the agent followed.

TDQS

A3.8/5.0
Behavior4/5

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

The annotations already establish that this is not read-only, not idempotent, and not destructive. The description adds useful behavioral context on top: it records which rules were relied on, produces a public verification URL, and confirms the record can later be checked for tampering. It does not explicitly state that every call creates a new persistent record, but the signed, time-stamped, public-URL language is fairly clear.

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 compact and front-loaded: the main action appears first, followed by what the caller gets back, when to use it, and the subscription requirement. Every sentence contributes useful information with no repetition or filler.

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 no output schema, the description correctly explains the return value (record ID plus verify URL) and the authentication requirement, which are the main non-obvious details. It is complete for most calls, but it would be stronger if it also confirmed the public, immutable nature of the created record and explicitly distinguished itself from the control-attestation sibling.

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 parameter descriptions already carry most of the semantic weight. The tool description adds only a high-level note about passing api_key and continuing required subscription, which is useful framing but does not substantially improve on the schema's own parameter details.

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 identifies a specific verb and resource: it creates a signed, time-stamped attestation record of which Bidda rules were relied on for a decision. It even states the return values (record ID and public verification URL), making the purpose concrete. It does not explicitly contrast itself with the similar sibling 'create_control_attestation', which keeps it from a perfect score.

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 gives useful context: it is for agents that must keep an audit trail, and it requires an active Bidda subscription or api_key. However, it does not explicitly say when to prefer this over other creation tools, and it never mentions create_control_attestation or any other alternative by name.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation4/5

Most tools target distinct functions: discovery, analysis, runs, attestation, and change feeds. However, get_latest_changes, obligation_deltas, and watch_changes all relate to regulatory changes and could be confused, as could get_node vs consult_node. Descriptions clarify, but boundaries are not always obvious.

Naming Consistency3/5

The majority follow a verb_noun pattern (browse_topics, create_attestation, get_node), but there are deviations like drift_check, gap_check, obligation_deltas, oscal_assessment_results, and point_in_time, which break the convention. Mixed patterns make the API less predictable.

Tool Count3/5

With 25 tools, the server is at the heavy end of the borderline range. Some tools (e.g., get_latest_changes vs obligation_deltas, get_run vs get_audit_pack) have overlapping functionality that could be consolidated, though the broad compliance domain justifies a larger surface.

Completeness3/5

The server covers discovery, analysis, run ledgers, attestation, and exports, but lacks a standalone way to access full node content outside a run (get_node returns only summaries; full nodes are external). This is a notable gap for compliance work. Also, there's no list of jurisdictions or verification tool for attestations, though these may be outside the server's intent.

Resources