Descartes Java Debugger
FreeNot checkedDebug live JVMs using JDWP or embedded runtime tooling with JShell, profiler, and hot reload capabilities.
About
Debug live JVMs using JDWP or embedded runtime tooling with JShell, profiler, and hot reload capabilities.
README
Debug live JVMs from MCP clients such as Claude Code, Codex, and Gemini CLI.
Descartes has two operating modes:
- Proxy mode for external debugging against JDWP-enabled JVMs.
- Embedded mode for full in-process runtime tooling (JShell, profiler, hot reload, resources, and more).
Security: run only in trusted development/test environments. JDWP and debugger tools can inspect memory, evaluate code, and suspend application threads.
Why You Should Use Descartes
- Debug JDWP-enabled JVMs without restarting application code.
- Investigate blocked and waiting execution paths with debugger thread/stack tools (
debugger_threads,debugger_stacktrace). - Share a repeatable debugging workflow with AI-assisted agent tooling.
- Move from proxy-first debugging to embedded, full-runtime introspection when needed.
Try It
Prerequisites: JDK 17+, Maven 3+, Node.js.
Pick a scenario below. Both use the included BuggyCalculator example app, which contains six intentional bugs (off-by-one, NPE, integer overflow, wrong conditional, edge-case handling, swapped business logic).
First check MCP registration below; that needs to be done before you try one of the scenarios below
Scenario A -- Agent does everything (unattended)
The agent builds, launches, connects, and debugs without manual intervention. You only type the prompt.
Step 1 -- Start the proxy in a separate terminal
./scripts/run-remote-proxy-from-maven.sh
Exposes MCP on port 9090, configured to reach JDWP on localhost:5005 (the actual JDWP connection happens later, when the agent starts a debug session). By default it uses the version from pom.xml; pass --version <version> to pin a specific release artifact.
For local source builds during development, use ./scripts/run-remote-proxy.sh instead.
Step 2 -- Ask the agent to debug
Open Claude Code, Codex, or Gemini CLI from this repo and paste:
Build with
mvn clean package -DskipTests, launchcom.bitsapplied.descartes.example.debugger.DebuggerWorkflowExamplewith JDWP in--interactivemode, then find the six bugs incom.bitsapplied.descartes.example.debugger.scenarios.BuggyCalculator.
The debug skill handles launch mechanics (script, JDWP flags, port). The agent connects and steps through all six bugs autonomously.
The checked-in client configurations are pre-configured for the proxy. No additional MCP or skill installation is needed in this repository.
Scenario B -- You launch the app, agent connects
You start the target app yourself (useful when reproducing a specific state, or when the app requires manual setup). The agent only attaches and debugs.
Step 1 -- Build the JAR (once)
mvn clean package -DskipTests
Step 2 -- Start the proxy in a separate terminal
./scripts/run-remote-proxy-from-maven.sh
Step 3 -- Launch the example app with JDWP in another terminal
mkdir -p .pids
scripts/launch-managed-nontty.sh \
--name buggy-calc \
-- java \
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=localhost:5005 \
-cp target/descartes-mcp-*-jar-with-dependencies.jar \
com.bitsapplied.descartes.example.debugger.DebuggerWorkflowExample \
--interactive </dev/null 2>&1 | tee .pids/buggy-calc.log
Wait for Listening for transport dt_socket at address: 5005 before continuing.
launch-managed-nontty.sh requires non-TTY file descriptors. The </dev/null 2>&1 | tee redirection satisfies that: stdin comes from /dev/null, stderr merges into stdout, and the pipe to tee makes stdout non-TTY while still printing to your terminal.
Step 4 -- Ask the agent to debug
Open Claude Code, Codex, or Gemini CLI from this repo and ask:
The BuggyCalculator app is already running with JDWP on port 5005. Connect the debugger and find the bugs in BuggyCalculator.
The agent will connect to the existing JDWP session and debug without trying to launch anything.
Step 5 -- Clean up when done
Stop the app using the PID file:
kill "$(cat .pids/buggy-calc.pid)"
MCP registration
This checkout includes native project configuration for each supported client:
| Client | MCP configuration | Skill discovery |
|---|---|---|
| Claude Code | .mcp.json |
.claude/skills/descartes-debug symlink |
| Codex | .codex/config.toml |
Canonical .agents/skills/descartes-debug |
| Gemini CLI | .gemini/settings.json |
Canonical .agents/skills/descartes-debug |
All three configurations launch config/mcp/mcp-tcp-adapter.js against MCP port 9090 with long debugger waits enabled. Start the proxy, open the client from this repository, and use the descartes-debug skill—there is no user-global skill install step.
Debug your own app
Start your app with JDWP and ask the agent to connect:
java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=localhost:5005 -jar your-app.jar
Use address=*:5005 to listen on all interfaces (remote debugging). If your shell is zsh, quote the flag to prevent glob expansion: '-agentlib:jdwp=...,address=*:5005'.
Debug skill (recommended for agents)
Copy the canonical skill into your target project for structured debugging workflows, then add Claude's discovery symlink:
mkdir -p .agents/skills .claude/skills
cp -R /path/to/descartes-mcp/.agents/skills/descartes-debug .agents/skills/
ln -s ../../.agents/skills/descartes-debug .claude/skills/descartes-debug
Codex and Gemini discover .agents/skills directly. See doc/debug-skill.md for validation and Windows guidance.
How It Fits
Proxy mode:
flowchart LR
A[Claude Code / Codex / Gemini] <--> B[mcp-tcp-adapter.js]
B <--> C[Descartes MCP Proxy]
C <--> D[Target JVM via JDWP]
Embedded mode:
flowchart LR
A["Claude Code / Codex / Gemini"] <--> B["mcp-tcp-adapter.js"]
subgraph APP["Your app JVM"]
C1["MCPServer + Descartes tools/resources + shared application context"]
end
B <--> C1
Use proxy mode when you want external, agent-driven inspection via JDWP. Use embedded mode when you want full Descartes capabilities in-process.
Modes: Which One To Start With
| Path | Setup | Best for |
|---|---|---|
| Proxy mode | Minutes | Debugging existing JDWP-enabled JVMs with no application code changes |
| Embedded mode | Requires dependency changes | JShell, profiling, hot reload, and deeper introspection |
Known Restriction
One proxy instance can target one JVM at a time. For multi-JVM workflows, run one proxy per target JVM or pick different ports.
See doc/restrictions.md.
Quick Tips
- Stop cleanly: end MCP usage, stop proxy with
Ctrl+C, then stop target JVM. - Port setup: keep adapter MCP port (
MCP_PORT) aligned with proxy--mcp-port. Configure JDWP host/port separately for the target JVM. - For agent-launched targets, use non-TTY launch and include the same JDWP flag used in manual startup.
- For JDK 21+ virtual-thread targets, add
includevirtualthreads=yto the target JVM's JDWP flag when you need virtual threads to appear in thread-list snapshots. - When debugging Descartes itself, set
DESCARTES_FORCE_PLATFORM_THREADS=trueor-Dtools.executor.virtualThreads.enabled=falseto run shared tool tasks on bounded platform threads.
Learn More
Installing Descartes Java Debugger
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/widoriezebos/descartes-mcpFAQ
Is Descartes Java Debugger MCP free?
Yes, Descartes Java Debugger MCP is free — one-click install via Unyly at no cost.
Does Descartes Java Debugger need an API key?
No, Descartes Java Debugger runs without API keys or environment variables.
Is Descartes Java Debugger hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Descartes Java Debugger in Claude Desktop, Claude Code or Cursor?
Open Descartes Java Debugger on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Descartes Java Debugger with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
