Skip to main content
Glama

accelo_create_webhook_subscription

Subscribe to Accelo events by providing a callback URL and event ID, so Accelo POSTs payloads to your endpoint for real-time notifications.

Instructions

Create a webhook subscription.

When the event fires, Accelo POSTs a payload to trigger_url containing {id, resource_url}. Headers include X-Accelo-Event and X-Hub-Signature (HMAC hex digest if secret is configured).

Args: trigger_url: Callback URL to receive the webhook payload (required) event_id: Event to subscribe to (required). One of: assign_task, unassign_task, create_task, create_invoice, update_invoice, delete_invoice, create_request, update_request_status, create_issue, update_issue, create_company, update_company, create_contact, update_contact, create_sale, update_sale, delete_activity content_type: Payload format — 'application/json' or 'application/x-www-form-urlencoded' (default) secret: Optional secret for HMAC signature verification

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
secretNo
event_idYes
trigger_urlYes
content_typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it discloses the exact payload shape ({id, resource_url}), the headers sent (X-Accelo-Event, X-Hub-Signature), that HMAC signing only occurs if secret is configured, and the content-type default. It stops short of auth/permission requirements or duplicate-handling behavior.

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

Conciseness4/5

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

Front-loaded with the core action, then structured detail in an Args block. The long event enumeration is justified because the schema carries no enum, though the payload/header prose could be slightly tightened.

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?

For a 4-param, no-annotation, no-output-schema tool at 0% schema coverage, the description covers all parameters and the downstream payload semantics thoroughly. Remaining gaps are auth/permission expectations and the immediate response format of the create call itself.

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

Parameters5/5

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

Schema description coverage is 0% and the schema has no enums, so the description fully compensates: it marks trigger_url and event_id as required, enumerates 17 valid event_id values, names the two allowed content_type values with the default, and explains secret's role in HMAC verification.

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 (Create) and resource (webhook subscription) that is unambiguous and clearly distinct from siblings like accelo_list_webhook_subscriptions and accelo_delete_webhook_subscription. The added payload/header detail reinforces what the created artifact actually does.

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 explicit when-to-use or when-not guidance, and no prerequisites or alternatives named. The 'create' verb implies usage, but the description never says when a webhook subscription is the right choice versus list/delete siblings, nor whether duplicates are permitted.

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

Deploy Server

Other Tools