# otterkit [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/useotterkit/skill  
**GitHub Stars:** 0  
**npm Downloads (last month):** 912  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/otterkit

## Description
Tunnels and webhooks for AI agents: capture, await, verify, replay, and send signed test events.

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

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

## Documentation & README

# OtterKit Agent Skills

Skills that teach AI coding agents (Claude Code, Cursor, Copilot — anything that
reads the [Agent Skills](https://code.claude.com/docs/en/skills) format) to drive
[OtterKit](https://www.otterkit.com): tunnels and serverless webhook endpoints with
capture, signature verification, and replay.

| Skill | What the agent learns |
|---|---|
| [`otterkit`](https://github.com/useotterkit/skill/blob/HEAD/otterkit/SKILL.md) | Core: tunnels, webhook endpoints, capture, inspect, replay, daemons, pricing |
| [`stripe-webhooks`](https://github.com/useotterkit/skill/blob/HEAD/stripe-webhooks/SKILL.md) | Stripe: signed synthetic events, `Stripe-Signature` verification, re-signed replay |
| [`github-webhooks`](https://github.com/useotterkit/skill/blob/HEAD/github-webhooks/SKILL.md) | GitHub Apps: persistent capture endpoint, `X-Hub-Signature-256` verification, replay |
| [`shopify-webhooks`](https://github.com/useotterkit/skill/blob/HEAD/shopify-webhooks/SKILL.md) | Shopify: stable `--tunnel-url` for the CLI, HMAC verification, standby endpoints |
| [`slack-webhooks`](https://github.com/useotterkit/skill/blob/HEAD/slack-webhooks/SKILL.md) | Slack: Events API via capture tunnel, signing-secret verification, re-signed replay |

## Install (Claude Code)

Copy any skill directory into `.claude/skills/` in your project (or `~/.claude/skills/`
for all projects):

```bash
git clone https://github.com/useotterkit/skill && cp -r skill/stripe-webhooks .claude/skills/
```

Or add the OtterKit MCP server, which exposes the same capabilities as tools:

```bash
claude mcp add otterkit -- npx otterkit mcp
```

## What's different from a plain tunnel

Every skill leans on three things ngrok-class tools don't do:

- **`otterkit send`** — synthetic provider events signed with real signature headers
  (`stripe:payment_intent.succeeded`, `github:pull_request.opened`, …) against a local
  handler, free, no provider account interaction.
- **`otterkit verify`** — check captured deliveries against a signing secret, per
  request, with the failure reason.
- **`otterkit replay --resign`** — re-deliver a captured event to local code, re-signed
  with a current timestamp so timestamp-tolerant handlers (Stripe, Slack) still accept it.

Skills are generated from the CLI's actual implementation and updated alongside it.

