authority-webhook-mcp
Authority Webhook MCP
A small, public-ready Node.js MCP server with one consequential boundary: publishing a normalized release notice to a configured webhook.
The server deliberately separates four concerns:
MCP input validation.
Exact action and target normalization.
The host-owned
ReleaseProviderboundary.Provider result evidence.
With no configuration it uses a deterministic dry-run provider. Set RELEASE_WEBHOOK_URL to use the HTTP provider; HTTPS is required except for localhost test endpoints. No production credential is needed to run or test the project.
Why this repository exists
Agent tools often place review or approval logic too early, before the final target and payload are known. Here the exact seam is explicit in ReleasePublisher.publish():
MCP request
-> validate
-> normalize action class + webhook target + exact input
-> ReleaseProvider.send(action) <-- consequential provider call
-> correlate provider resultThat seam makes the project suitable for evaluating a single-use authority gate without using a live external service.
Related MCP server: netlinq-jenkins-mcp
Requirements
Node.js 20 or newer
npm
Run the checks
npm install
npm run ciRun as an MCP server
Dry-run mode:
npm run build
npm startLocal webhook sandbox:
RELEASE_WEBHOOK_URL=http://127.0.0.1:8787/releases npm startThe exposed tool is publish_release_notice:
{
"repository": "example/agent-tools",
"tag": "v1.2.0",
"summary": "Add a sandboxed release-notification tool."
}Run a deterministic evidence demo
The demo exercises the real normalization and provider boundary with the in-memory dry-run provider. It performs no network request and prints the exact action, its SHA-256 fingerprint, and the correlated provider result:
npm run demoThe dry-run provider request ID is derived from the action fingerprint, making the output reproducible and easy to compare without exposing credentials.
Current safety properties
Repository identifiers are normalized to
owner/name.Release tags and summaries have bounded formats.
Webhook URLs reject embedded credentials and non-HTTPS remote targets.
The action fingerprint covers the action class, exact target, and exact normalized input.
Invalid input fails before the provider runs.
Tests use an injected recording provider and make no external calls.
This baseline does not yet implement human approval, single-use consumption, tamper rejection, or replay protection. Those controls belong immediately before ReleaseProvider.send() and should be added only as a deliberate authority-gate integration, with tests that prove the provider remains untouched on every rejected path.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityCmaintenanceA deterministic, network-free MCP server for validating repository release hygiene and version alignment in local projects. It enables automated repository health checks and generates standardized release checklists based on project state.Last updated1
- Flicense-qualityCmaintenanceEnables triggering Jenkins release and patch pipelines through natural language, with support for MCP and web interfaces.Last updated
- AlicenseAqualityAmaintenanceGenerates multi-platform release announcements (X, Reddit, GitHub profile, awesome-list, MCP directory) and a publish-readiness checklist for any public GitHub repository.Last updated3MIT
- AlicenseAqualityBmaintenanceA local-first, model-neutral MCP server for collecting and normalizing change-scoped release evidence. It provides deterministic Git change summaries, evidence collection, and review bundles for agent review.Last updated716Apache 2.0
Related MCP Connectors
An agent-friendly API for product changelogs. A unified registry via CLI, API, or MCP.
Remote MCP for Kiro release readiness, evidence binders, signoff, and CI approval receipts.
Remote MCP for AI Studio Android release gate MCP, structured receipts, audit logs, and reviewer-rea
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/boundarycraftlab/authority-webhook-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server