Skip to main content
Glama
fabianonetto

Universal Firefly III AI Bridge

by fabianonetto

create_webhook

Create a webhook to send Firefly III event notifications to a specified URL when a defined trigger occurs.

Instructions

Create a webhook.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
titleYes
triggerYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

D1.8/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of disclosing behavioral traits. 'Create a webhook.' does signal a mutating side effect, but it does not mention permission requirements, validation rules, effects on existing webhooks, or possible failure/response behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The single sentence is short, but it is under-specification rather than genuine conciseness. It restates the tool name and contributes no additional information, so it does not earn its place in the definition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a CRUD-style creation tool with three required parameters, no output schema, and no annotations. A one-line restatement leaves the agent without enough context about parameter semantics, return values, or side effects, making reliable invocation impossible.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description adds no information about the three required parameters (title, url, trigger). The agent receives only bare type names with no meaning, format, or defaults beyond 'string', and the description does nothing to compensate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Create a webhook.' names a verb and resource, but it merely restates the tool name and provides no differentiation from sibling webhook tools such as list_webhooks or delete_webhook. It fails to explain what a webhook is or how this creation action differs from related operations.

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

Usage Guidelines2/5

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

No guidance is provided about when to use create_webhook versus alternatives. The description does not mention prerequisites, configuration steps, or how this compares with other webhook or rule-related tools, leaving the agent without routing cues.

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