Your webhooks, from your coding agent

The Svix Dashboard MCP server connects your coding agent to your Svix environment, so it can set up sources, read the webhooks you received, and debug failing deliveries without you leaving your editor.

Connecting takes a minute

Everything starts in the dashboard, which generates your token and the exact configuration for your agent.

1

Open the MCP settings

Go to Settings → Dashboard MCP in your Svix dashboard.

2

Hit “Connect to MCP”

Svix generates an access token for the current environment and opens the setup instructions.

3

Pick your agent

Copy the ready-to-paste configuration for Claude Code, Cursor, VSCode, Codex, and more.

What your agent can do

The server exposes your Svix Ingest setup as tools, so your agent can go from “set up Stripe webhooks” to a working, verified handler.

Set up sources

Create an Ingest source for a provider like Stripe or GitHub, and get back the URL to paste into that provider's webhook settings.

Point webhooks at your code

Add and update Ingest endpoints so incoming webhooks reach the handler you are writing, whether it's a tunnel URL or production.

Read the real payloads

List and read the webhooks a provider actually sent, so your agent writes the handler against the real payload instead of a guess.

Debug failed deliveries

Inspect delivery attempts with the exact status code and response body your handler returned, and the stats behind them.

Manage signing secrets

Fetch or rotate endpoint signing secrets and custom headers, so signature verification works the first time.

Resend and recover

Resend a single webhook to test a fix against a real, properly signed request, or replay everything an endpoint missed.

Setup instructions

The dashboard fills these in with your generated token. Replace <your-token> with the token it gives you.

  1. Open your terminal and add the server to Claude Code.
    claude mcp add --transport http svix-dashboard "https://mcp.us.svix.com/dashboard" \
      --header "Authorization: Bearer <your-token>"
  2. Verify it loaded with /mcp.

For more details, see the Claude Code MCP documentation.

Let your agent handle the webhooks.

Connect to MCP