🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@standardbeagle/mcp-debug

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@standardbeagle/mcp-debug

A debugging and development tool for MCP servers with hot-swapping, session recording, and automated playback testing

latest
Source
npmnpm
Version
1.1.6
Version published
Weekly downloads
15
-11.76%
Maintainers
1
Weekly downloads
 
Created
Source

MCP Debug

A debugging and development tool for Model Context Protocol (MCP) servers.

Installation

# Run directly with npx (recommended)
npx @standardbeagle/mcp-debug --help

# Or install globally
npm install -g @standardbeagle/mcp-debug
mcp-debug --help

Features

  • Hot-Swap Development - Replace server binaries without disconnecting MCP clients
  • Session Recording & Playback - Record JSON-RPC traffic for debugging and testing
  • Development Proxy - Multi-server aggregation with tool prefixing
  • Dynamic Server Management - Add/remove servers at runtime

Quick Start

# Start proxy with config
npx @standardbeagle/mcp-debug --proxy --config config.yaml

# Record a session
npx @standardbeagle/mcp-debug --proxy --config config.yaml --record session.jsonl

# Playback recorded requests
npx @standardbeagle/mcp-debug --playback-client session.jsonl | ./your-mcp-server

Programmatic Usage

const { binaryPath } = require("@standardbeagle/mcp-debug");
const { spawn } = require("child_process");

const child = spawn(binaryPath, ["--proxy", "--config", "config.yaml"]);

Documentation

See the GitHub repository for full documentation.

License

MIT License

Keywords

mcp

FAQs

Package last updated on 07 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts