TracePulse
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@TracePulsecheck the latest errors from the dev server"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
TracePulse
Runtime feedback MCP server for AI coding agents.
Fewer wasted tokens. Faster shipping. Lower carbon footprint. Responsible AI in action.
ViewGraph sees the UI. TracePulse hears the backend.
"LLMs can't see what happens when their code actually runs. They're throwing darts in the dark." - Sentry Engineering
TracePulse closes this loop at dev time - seconds after the code change, not minutes after deployment.
TracePulse watches your dev server's stdout/stderr, parses errors into structured events with signal scoring, and exposes them as MCP tools that any AI coding agent can call. The agent edits code, calls get_errors, and instantly knows if the fix worked - no manual log reading, no copy-paste.
Status
🟡 Alpha v0.9.25 - Phases 1-5 complete. Core pipeline, watch mode, multi-process support, frontend-backend correlation, proactive monitoring. 26 error parsers, 42 MCP tools, 1174 tests passing.
Related MCP server: MCP Plus
Quick Start
Add TracePulse to your MCP client's config file. The file location depends on which tool you use:
Config File Locations
MCP Client | Config File |
Kiro CLI |
|
Claude Code |
|
Claude Desktop |
|
Claude Desktop |
|
Cursor |
|
VS Code (Copilot) |
|
Windsurf |
|
Generic |
|
⚠️ Common mistake: Kiro CLI uses
.kiro/settings/mcp.json, not.kiro/mcp.json. If TracePulse tools don't appear, check you're editing the right file.
Zero-config (works for any project)
{
"mcpServers": {
"tracepulse": {
"command": "tracepulse"
}
}
}TracePulse auto-detects your project type (Node, Python, Go, Rust, Java) and provides tools immediately. No server command needed - the agent can call start_server() later when ready.
For non-Node projects, install globally first: npm install -g tracepulse
To install the latest unreleased version directly from GitHub:
npm install -g github:sourjya/tracepulseStart mode - spawn and monitor your dev server
Node.js projects (npm/pnpm/Bun available in project):
{
"mcpServers": {
"tracepulse": {
"command": "npx",
"args": ["tracepulse", "start", "npm run dev"]
}
}
}Python, Go, Java, Rust, or any non-Node project:
Node.js may not be on your project's PATH. Install TracePulse globally once:
npm install -g tracepulseThen use the global binary directly:
{
"mcpServers": {
"tracepulse": {
"command": "tracepulse",
"args": ["start", "python manage.py runserver"]
}
}
}Replace the command with your dev server: uvicorn main:app --reload, go run main.go, mvn spring-boot:run, cargo run, etc.
If your server needs environment variables (e.g., PYTHONPATH), use the env field:
{
"mcpServers": {
"tracepulse": {
"command": "tracepulse",
"args": ["start", "python -m myapp.server"],
"env": { "PYTHONPATH": "src" }
}
}
}If your server uses a start script (bash, shell):
{
"mcpServers": {
"tracepulse": {
"command": "tracepulse",
"args": ["start", "bash scripts/start.sh"]
}
}
}⚠️ Environment variables go in the
envfield, not in the command."args": ["start", "PYTHONPATH=src python app.py"]won't work. Put variables inenvand keep the command clean.
Attach mode - tail an existing log file
Use this when your servers are already running (managed by scripts, Docker, process managers, etc.):
{
"mcpServers": {
"tracepulse": {
"command": "npx",
"args": ["tracepulse", "attach", "--log-file", "./logs/server.log"]
}
}
}Local development (without npm publish)
Point directly to the built CLI:
{
"mcpServers": {
"tracepulse": {
"command": "node",
"args": ["/path/to/tracepulse/dist/cli.js", "start", "npm run dev"]
}
}
}Which mode should I use?
Situation | Mode |
Simple | start - TracePulse spawns it |
Servers managed by scripts, Docker, tmux, pm2 | attach - TracePulse tails the log file |
Fresh project, library, or no server yet | standalone - tools only, no collector |
Multiple services (API + worker + frontend) | start --service or config file |
Docker Compose setup | compose |
MCP Tools
Core (Phase 1)
Tool | Description | Tokens |
| Recent errors sorted by signal score (highest first) | ~1,000 |
| All log events sorted by timestamp (newest first) | ~2,000 |
| Health check: connected, error count, correlation source | ~100 |
| Reset the event buffer for a clean verification cycle | ~50 |
Watch Mode (Phase 2)
Tool | Description | Tokens |
| Block for N seconds, collect new errors after hot-reload | ~1,000 |
| TypeScript, ESLint, Vite/webpack compilation errors | ~1,500 |
| Deep-dive: full error + surrounding logs ±5s + occurrence count | ~3,000 |
| Unified chronological stream of all events | ~5,000 |
Multi-Process (Phase 3)
Tool | Description | Tokens |
| Service names, statuses, error counts, last activity | ~200 |
| Start a dev server mid-session. Pre-validates command, activates monitoring. | ~100 |
| Stop a running dev server. Sends SIGTERM, waits, then SIGKILL if needed. | ~50 |
| Kill and respawn the dev server (start mode only). Auto-clears error buffer. | ~100 |
Correlation (Phase 4)
Tool | Description | Tokens |
| Match browser HTTP failures with backend stack traces | ~2,000 |
| Cross-layer failure diagnosis. Correlates backend, frontend, git, and process signals into actionable root-cause diagnoses. | ~500 |
Proactive (Phase 5)
Tool | Description | Tokens |
| Only errors with fingerprints not seen in previous sessions | ~1,000 |
| Cross-session frequency and history for a fingerprint | ~500 |
| Link errors to recent uncommitted git changes | ~1,000 |
Execution & Health
Tool | Description | Tokens |
| Run tests/linter/typechecker, get parsed results. | ~1,000 |
| Recent HTTP requests filtered by path and status | ~1,000 |
| One-line health check: errors, warnings, uptime | ~100 |
| All-in-one post-fix verification with pass/fail verdict | ~500 |
| Composite fix verification with confidence scoring. Collapses 5-7 calls into 1. | ~300 |
| Block until next build completes (event-driven) | ~200 |
| Block until next error/warning/build/crash event | ~200 |
| Test that an MCP server starts and responds to the initialize handshake. Use after changing server code or deps. | ~200 |
Error Intelligence
Tool | Description | Tokens |
| Group errors by type + module path. See patterns across the codebase. | ~500 |
| Cross-session patterns: recurring, velocity, chains, flaky, regressions. Includes token cost. | ~500 |
| Pre-assembled reasoning packet: error + stack + logs + file context. Token-budgeted. | ~3,000 |
| Check pending migrations. Auto-detects alembic/prisma/django/knex. | ~200 |
| Per-endpoint P50/P95/max response times from HTTP access logs. | ~500 |
| Review tool usage this session. Optimize your workflow. | ~500 |
Error Parsers
TracePulse parses errors from 25 sources out of the box:
Runtime errors:
Node.js - TypeError, ReferenceError, SyntaxError, etc. with V8 stack traces
Python - Tracebacks with file:line extraction
Go - Panics with goroutine stack traces
Java - Exceptions with
atframes andCaused by:chainsRust - Panics with
RUST_BACKTRACEoutputJSON - Structured logs (pino, structlog JSON, logback) with level/message fields
Structlog - Python structlog key-value format (
[info],[warning],[error]brackets)
Build errors:
TypeScript -
tsccompiler errors (TS####)ESLint - Lint errors with rule names
Vite/webpack - Build tool errors (module not found, transform failures)
Build Stats - Module count, build time from Vite/webpack
Test runners:
pytest - FAILED, ERROR, summary lines
Jest - FAIL header, assertion details
vitest - FAIL file, Expected/Received
Go test -
--- FAIL, error with file:linecargo test - test FAILED, panic with file:line, summary
JUnit/Maven/Gradle - Surefire summary, Gradle task FAILED, AssertionError
Infrastructure:
HTTP Access Log - uvicorn, express/morgan, nginx with status and duration
Migration - alembic and Django migration output
Background workers:
Celery - task raised/retry/timeout/succeeded
Sidekiq - WARN/ERROR/FATAL job events, done timing
BullMQ - job failed/stalled/completed, queue errors
Signal Scoring
Every event gets a signal_score (0–100) and signal_strength (high/medium/low):
Signal | Score | Example |
high | ≥ 50 | Unhandled exception with user-code stack trace |
medium | 20–49 | Error log without stack trace, HTTP 4xx |
low | < 20 | Warning, deprecation notice, hot-reload marker |
CLI Usage
# Single process - spawn and monitor
tracepulse start "npm run dev"Spawns your dev server as a child process, captures its stdout/stderr, and monitors for errors. TracePulse manages the process lifecycle - forwards SIGTERM/SIGKILL on shutdown.
# Attach to existing log file
tracepulse attach --log-file ./server.logTails an existing log file without spawning any process. Use when your servers are already running - managed by Docker, tmux, pm2, systemd, or custom scripts.
# Multi-process - monitor multiple services
tracepulse start --service api="npm run dev:api" --service worker="npm run worker"Spawns multiple services simultaneously. Each service's output is tagged with its name - filter with get_errors(service: "api") or see all with list_services().
# Config file
tracepulse start --config tracepulse.config.jsonReads service definitions, transport settings, and persistence options from a JSON config file instead of CLI flags. See Configuration for the schema.
# Docker Compose
tracepulse compose --file docker-compose.ymlDiscovers services from a Docker Compose file and tails their container logs via the Docker Engine API. Each container's output is tagged with its compose service name.
# With persistence (saves fingerprints across sessions)
tracepulse start --persist "npm run dev"# Clustered mode (7 gateways instead of 42 tools - 80% schema reduction)
tracepulse start --clustered "npm run dev"Collapses 42 tools into 7 semantic gateways. The agent discovers sub-tools on demand, loading only what it needs. Schema overhead drops from ~1,000 to ~200 tokens per turn.
# With HTTP transport (for multi-client scenarios)
tracepulse start --http "npm run dev"Starts a Streamable HTTP server on 127.0.0.1:9800 alongside the default stdio transport. Allows multiple MCP clients to connect to the same TracePulse instance simultaneously.
# Project setup - install config, steering, hooks, and prompt shortcuts
tracepulse initAuto-detects your MCP client (Kiro, Claude Code, Cursor) and:
Merges TracePulse into your existing MCP config (preserves other servers)
Installs steering files and hooks for optimal agent behavior
Installs prompt shortcuts (
@tp-debug,@tp-health,@tp-test,@tp-diagnose,@tp-start)Updates .gitignore to exclude
.tracepulse/session dataChecks for updates against the npm registry
Re-run tracepulse init after updating TracePulse to sync the latest steering and prompts.
Prompt Shortcuts (Kiro)
After running tracepulse init, these shortcuts are available in Kiro:
Shortcut | What it does |
| Investigate and fix the latest backend error |
| Full project health check: server, infra, errors, build |
| Run tests and fix failures |
| Cross-layer diagnosis: correlate backend, frontend, git, infra |
| Start the dev server with live error monitoring |
Why run_and_watch Instead of Shell
run_and_watch isn't just a convenience - it solves real reliability problems:
Structured output. Shell commands return raw text the agent must parse. run_and_watch returns structured JSON with pass/fail counts, error details, and file:line references.
WSL reliability. On WSL (Windows Subsystem for Linux), terminal output capture is unreliable - Kiro IDE and other tools often can't read test results from the terminal. run_and_watch bypasses this entirely because it captures output via Node.js pipes and returns data over the MCP protocol (JSON-RPC over stdio), a completely separate channel from the terminal.
Monorepo support. The cwd parameter runs commands in subdirectories without cd prefix hacks:
run_and_watch("npx vitest run", cwd: "./frontend")
run_and_watch("pytest tests/", cwd: "./backend")Parser pipeline. Output flows through TracePulse's 25 parsers, so test failures, build errors, and runtime crashes are all normalized into the same structured format the agent already knows.
Cloud Log Monitoring
Monitor cloud service logs with zero additional dependencies - uses your existing cloud CLIs:
Platform | Command |
| |
| |
| |
| |
| |
| |
Same pattern with their CLIs |
The same 26 parsers that catch local dev server errors catch cloud errors too.
Hot-Reload Detection
TracePulse detects hot-reload events from 8 dev tools:
Vite - compilation success, HMR updates
webpack - compilation completed
nodemon - restart/starting events
Next.js - compilation, route compiling
ts-node-dev - restart, compilation complete
uvicorn - file change detection, reloader process
Django - file change watching, system checks
Flask - restart with stat/watchdog, change detection
When watch_for_errors detects a hot-reload, it sets hot_reload_detected: true in the response so the agent knows the server actually reloaded.
Security
All log output is redacted for secrets (16 patterns: API keys, Bearer/JWT tokens, connection strings, PEM keys, GitHub/GitLab/Slack tokens, GCP service accounts, Azure connection strings, Datadog keys) before entering the pipeline
No secrets in MCP responses, ring buffer, or diagnostic output
HTTP endpoints bind to
127.0.0.1only - no external accessFingerprint persistence stores only hashes, not raw error messages
No file system writes except optional fingerprint persistence
TracePulse for Teams (Coming Soon)
Local: Your agent sees your server. Team: Every agent sees every server.
Deploy a shared TracePulse instance for your engineering team. Every developer's AI agent connects via HTTPS to one server that:
Aggregates errors across all dev environments
Shares fingerprints - if one developer hits a bug, every agent knows
Team audit trail - see tool usage and token savings across the team
Centralized drift detection - one health check covers shared staging
SSO/API key auth - enterprise-ready access control
{
"mcpServers": {
"tracepulse": {
"type": "streamable-http",
"url": "https://tracepulse.internal.company.com/mcp",
"headers": { "Authorization": "Bearer <team-api-key>" }
}
}
}Self-hosted via Docker or one-click deploy on Railway/Fly.io. Roadmap
Companion Tools
TracePulse is designed to work alongside:
ViewGraph - Visual cortex: structured UI perception (DOM, a11y, layout, annotations)
Chrome DevTools MCP - Motor cortex: browser interaction (console, network, performance)
TracePulse is the auditory cortex - it hears what the backend is saying. Together, the agent has the same situational awareness a senior developer has: see the UI, act in the browser, hear the server.
The cortex analogy maps to the Perception-Planning-Acting modular architecture formalized in GUI agent research (arXiv 2412.13501, arXiv 2504.20464). ViewGraph provides the perception module, Chrome DevTools MCP the action module, TracePulse the environment feedback module.
Architecture
See docs/architecture/architecture-guide.md for the full architecture guide with diagrams.
License
AGPL-3.0
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sourjya/tracepulse'
If you have feedback or need assistance with the MCP directory API, please join our Discord server