Connect AI assistants to your Inngest event-driven workflows. Send events, monitor runs, and debug execution using natural language.
What it does: Lets you ask Claude things like "send a user.created event", "check the status of run abc123", or "get details for event xyz456 runs".
- Node.js 22+
- Claude Desktop (recommended) or any MCP client
- Inngest account with functions deployed (Cloud) or local dev server
- Install and build:
git clone <this-repo>
cd inngest-mcp-server
npm install && npm run build- Configure for your environment:
For Inngest Cloud:
export INNGEST_SIGNING_KEY="signkey-prod-xxxxx" # From Inngest dashboard
export INNGEST_BASE_URL="https://api.inngest.com"
export INNGEST_ENV="production" # or your environment name
npm startFor local development:
npx inngest-cli@latest dev # Start Inngest dev server first
npm start # Uses localhost:8288 by default- Add to Claude Desktop (
~/.config/claude_desktop_config.jsonon macOS):
For Inngest Cloud:
{
"mcpServers": {
"inngest": {
"command": "node",
"args": ["/absolute/path/to/inngest-mcp-server/build/index.js"],
"env": {
"INNGEST_SIGNING_KEY": "signkey-prod-xxxxx",
"INNGEST_BASE_URL": "https://api.inngest.com",
"INNGEST_ENV": "production"
}
}
}
}For local development:
{
"mcpServers": {
"inngest": {
"command": "node",
"args": ["/absolute/path/to/inngest-mcp-server/build/index.js"]
}
}
}- Test it works:
- Restart Claude Desktop
- Ask: "Debug connection to Inngest"
- You should see your configuration details
| Tool | Purpose | What it provides |
|---|---|---|
send_event |
Send events to trigger functions | Event ID confirmation |
get_event_runs |
Get runs triggered by an event | List of runs with status, duration, output |
get_run_details |
Get detailed run information | Run metadata, status, output (no step timeline) |
manage_run |
Cancel or replay specific runs | Success/failure confirmation |
debug_connection |
Debug API connection issues | Configuration and last error details |
"Send a user.created event with data {userId: 123, email: '[email protected]'}"
"Trigger a batch.process event with 100 items"
"Get runs for event 01HXXX"
"Check the status of run 01KXXX"
"Show me the output of run 01JXXX"
"Get details for run 01K2WHNRVEG4H92FVKVGM5VSJY"
"Debug connection to Inngest"
"What was the last API error?"
"Cancel run 01KXXX"
"Replay run 01JXXX"
Step-by-step execution details are NOT available via REST API. The detailed timeline with individual steps that you see in the Inngest dashboard uses GraphQL and is not exposed through the public REST API.
What you get:
- ✅ Run status, duration, start/end times
- ✅ Function metadata (ID, version, environment)
- ✅ Event ID that triggered the run
- ✅ Final output data
- ❌ Individual step timeline
- ❌ Step-by-step execution details
For detailed execution debugging, use the Inngest dashboard at https://app.inngest.com.
INNGEST_SIGNING_KEY="signkey-prod-xxxxx" # Required: From Inngest dashboard → Manage → Keys
INNGEST_BASE_URL="https://api.inngest.com" # Required: Always this for cloud
INNGEST_ENV="production" # Optional: Environment/branch name
INNGEST_EVENT_KEY="..." # Optional: For sending events# Defaults work for local dev server
INNGEST_BASE_URL="http://localhost:8288" # Default
INNGEST_SIGNING_KEY="local-dev-key" # Default
# Start dev server: npx inngest-cli@latest devFor web applications or remote access:
# Start HTTP server
npm run start:http
# Server runs on http://127.0.0.1:3000/mcpClaude Desktop HTTP config:
{
"mcpServers": {
"inngest": {
"type": "http",
"url": "http://127.0.0.1:3000/mcp"
}
}
}Note: Set environment variables before starting the HTTP server, not in Claude config.
npm run dev # Watch mode (stdio)
npm run dev:http # Watch mode (HTTP)
npm run test # Run tests
npm run lint # Check code style
npm run build # Build for productionThis MCP server uses Inngest's REST API, which provides:
- Event management
- Run listing and basic details
- Run management (cancel/replay)
- Basic run metadata
For advanced features like step-by-step execution timeline, use the Inngest dashboard which uses GraphQL.
"Connection refused":
- Cloud: Check your
INNGEST_SIGNING_KEYandINNGEST_BASE_URL - Local: Ensure
npx inngest-cli@latest devis running
"No runs found":
- Normal for new events/functions
- Local dev server may not persist run history
"Inngest API error: 404":
- Run ID doesn't exist or wrong environment
- Check your
INNGEST_ENVsetting
Claude can't find the server:
- Verify absolute path in Claude config
- Restart Claude Desktop after config changes
Model Context Protocol lets AI assistants connect to external tools and data sources. This server makes your Inngest event system available to Claude and other AI assistants.