Skip to main content
Glama

Bidda Sovereign Intelligence

open_run

Open a run ledger: a signed, tamper-evident log of what an agent does across a whole task or conversation (for example a support-bot chat). Returns a run_id. Record one entry per turn with record_run_entry, then seal_run to get a single signed Run Receipt. Requires an active Bidda subscription: pass api_key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentYesThe system or agent running the task or conversation.
labelNoOptional human label, for example the chat or ticket id.
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.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover read/write and idempotency, and the description adds behavioral context beyond that: the ledger is signed and tamper-evident, returns a run_id, and requires an active Bidda subscription via api_key. This is consistent with the annotations, which mark the operation as non-read-only and non-destructive.

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 with the tool's core function, then return value, workflow, and requirement. Every sentence carries useful information without fluff.

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 create-style tool with three params, the description explains the purpose, return value, workflow continuation (record_run_entry, seal_run), and auth requirement. No output schema exists, so noting run_id is sufficient; nothing critical is missing.

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 covers all three parameters with descriptions (100% coverage), including header precedence for api_key. The description adds only a redundant subscription requirement reference, so it doesn't significantly expand on 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?

States a specific verb and resource ('Open a run ledger') and explains the return value (run_id). It clearly differentiates from siblings by outlining the workflow with record_run_entry and seal_run, so an agent can tell it starts a new ledger rather than reading or appending.

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 clear context: use this to start a run ledger for a task/conversation, then use record_run_entry per turn and seal_run to finish. It does not explicitly name alternatives like get_run or state when not to use it, but the workflow makes the intended usage evident.

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

A4/5.0
Disambiguation4/5

Most tools have clearly distinct purposes. The few overlapping pairs (get_node vs consult_node, get_latest_changes vs obligation_deltas) are explicitly differentiated in their descriptions, so an agent should be able to select correctly. No tools appear to do the same thing.

Naming Consistency3/5

The majority of tools follow a clear verb_noun pattern (get_node, create_attestation, seal_run). However, several tools deviate significantly: drift_check and gap_check put the noun first, obligation_deltas is a bare noun, and point_in_time and oscal_assessment_results are noun phrases without a verb. This inconsistency makes the set feel less predictable.

Tool Count3/5

At 25 tools, this is at the heavy end of the range. However, the tool set covers a very broad compliance intelligence domain, including discovery, compliance checks, run management, attestations, and change feeds. Each tool has a clear role, but the sheer number may overwhelm agents that need only a subset of functionality.

Completeness5/5

The tool surface is very comprehensive for a compliance intelligence platform. It covers discovery (browse, search, list, get), action compliance checking, jurisdiction comparison, dependency analysis, change tracking, run ledger management, attestation creation, and evidence export. There are no obvious dead ends or missing core operations for the stated domain.

Resources