Skip to main content
Glama
tribeunal

Tribeunal MCP Server

Official
by tribeunal

Create webhook

tribeunal_create_webhook

Register an HTTPS URL to receive signed POST notifications for case events you own, enabling real-time reactions without polling. Includes a one-time signing secret and retry delivery.

Instructions

Register a URL that Tribeunal will POST your cases' events to, so you can react to them without polling. Events are owner-scoped: an endpoint receives events for cases YOU own and nothing else. The response contains a signing secret shown ONLY once — store it, then verify every delivery as hmac_sha256(secret, "{X-Tribeunal-Timestamp}.{raw body}") against the hex in X-Tribeunal-Signature (format "v1="). Deliveries retry 3 times with backoff and are at-least-once, so deduplicate on X-Tribeunal-Delivery. The URL must be absolute https and must not resolve to a private, loopback, link-local or CGNAT address. Maximum 10 endpoints per account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesHTTPS URL that will receive the signed POST requests
eventsYesEvents to subscribe to. One or more of: case.opened, case.closed, vote.cast, vote.revoked, comment.created, evidence.marked, evidence.unmarked, jury.joined, ping

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.13.0

TDQS

A4.7/5.0
Behavior5/5

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

Annotations only say readOnlyHint=false and destructiveHint=false, so the description carries the behavioral burden and fully exceeds it: one-time signing secret, exact hmac_sha256 verification formula with timestamp and hex format, 3 retries with backoff, at-least-once delivery requiring dedup on X-Tribeunal-Delivery, URL restrictions (no private/loopback/link-local/CGNAT), and the 10-endpoint cap. No contradiction with annotations.

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?

One dense paragraph of roughly 100 words, front-loaded with the core purpose and then flowing logically through scope, security, delivery semantics, URL restrictions, and limits. Every sentence earns its place; the security and delivery details are dense but necessary for correct invocation and safe handling of delivered events.

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 2-param tool with no output schema, the description is complete: it covers what to provide (url, events), the constraints on those values, and the critical response detail (signing secret shown only once, with the verification formula). An agent has everything needed to create the webhook correctly and process its deliveries, so the absent output schema does not create a gap.

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%, so the baseline is 3, but the description adds meaning beyond the schema: it tightens the url semantics (must be absolute https, must not resolve to private/loopback/link-local/CGNAT addresses) and contextualizes events as owner-scoped. These extra constraints and scoping information justify an above-baseline score.

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 opens with a specific verb+resource: 'Register a URL that Tribeunal will POST your cases' events to...' which clearly states what the tool does and its benefit (react without polling). It is unambiguously distinguishable from siblings like tribeunal_list_webhooks and tribeunal_delete_webhook because the verb and effect (registering a delivery endpoint) are specific and unique among them.

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 'react without polling' framing gives clear context for when to prefer webhooks over polling-based siblings like await_case_activity or get_case_activity, and the owner-scoped note clarifies the delivery model. However, it does not explicitly name sibling alternatives (list_webhooks, delete_webhook) or state when NOT to use this tool, so it stops short of full when/when-not guidance.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tribeunal/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server