PulseLight × Claude Code
Pre-deploy checks inside Claude Code
PulseLight’s MCP server tells Claude Code what’s blocking launch in your repo, then hands it a paste-ready fix prompt — restraint-engineered so Claude doesn’t refactor half the codebase while it’s there.
Install
Early access
# Preview — once @pulselight/mcp publishes to npm:
# 1. Install the MCP server
npm install -g @pulselight/mcp
# 2. Mint a token in the dashboard:
# app.pulselight.io → Settings → API tokens
# 3. Wire it into Claude Code — add to .mcp.json
# at the repo root (or ~/.claude/mcp_servers.json for global):
{
"mcpServers": {
"pulselight": {
"command": "pulselight-mcp",
"env": {
"PULSELIGHT_TOKEN": "pul_…",
"PULSELIGHT_WORKSPACE_ID": "ws_…"
}
}
}
}How it works
Ask Claude Code: is this safe to ship?
Use pulse_status to tell me what’s blocking this branch from shipping.Pick a blocker, fetch the fix prompt
Apply the fix, re-scan
FAQ
- Does this need a Claude Code Skill?
- Why MCP and not a Claude Code-specific extension?
- Does PulseLight read my code?
- Do I need a paid plan?