# gba3124/anyhook-mcp [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/gba3124/anyhook-mcp  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/mcp-295

## Description
Webhook relay for AI agents: keyless quickstart, event inspection, replay, mock payloads.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "anyhook-mcp": {
    "command": "npx",
    "args": ["-y","anyhook-mcp"]
  }
}
```

## Documentation & README

# AnyHook client packages

Source for the npm packages that go with [AnyHook](https://anyhook.net), a webhook relay: change one URL and your webhooks get automatic retries, a full event log, and one-click replay.

| Package | npm | What it is |
|---------|-----|------------|
| [`anyhook-mcp`](https://github.com/gba3124/anyhook-mcp/blob/HEAD/packages/mcp) | [![npm](https://img.shields.io/npm/v/anyhook-mcp)](https://www.npmjs.com/package/anyhook-mcp) | MCP server — lets a coding agent set up and operate webhook infrastructure by itself |
| [`anyhook-verify`](https://github.com/gba3124/anyhook-mcp/blob/HEAD/packages/verify) | [![npm](https://img.shields.io/npm/v/anyhook-verify)](https://www.npmjs.com/package/anyhook-verify) | Verify `AnyHook-Signature` headers on your server (HMAC-SHA256, retry-safe) |
| `@anyhook/core` | not published | Shared internals (signature logic, provider fixtures), bundled into the two above |

## The 30-second version

```json
{ "mcpServers": { "anyhook": { "command": "npx", "args": ["-y", "anyhook-mcp"] } } }
```

No API key needed up front. The `anyhook_quickstart` tool provisions a live webhook endpoint and key on its own (no account, 7-day TTL, claimable into a free account later). 12 tools: quickstart, apps, events, inspect, replay, mock/simulate for testing, signature verification.

Prefer plain HTTP? The same bootstrap is one curl:

```bash
curl -X POST https://anyhook.net/api/v1/quickstart
```

## Development

pnpm workspace. Node 20+.

```bash
pnpm install
pnpm test    # vitest across all packages
pnpm build   # tsup
```

The hosted relay itself (ingress, forwarder, dashboard) is a separate closed-source service — this repo is the client tooling. API reference: [openapi.json](https://anyhook.net/openapi.json) · agent docs: [llms.txt](https://anyhook.net/llms.txt) · pricing: [pricing.md](https://anyhook.net/pricing.md)

## License

Apache-2.0

