Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From jdwp-debugging
Local MCP server for Java debugging via JDWP. Attaches to JVM processes for thread inspection, stack traces, and variable analysis using the Java Debug Interface (JDI).
npx claudepluginhub fgforrest/mcp-jdwp-java --plugin jdwp-debuggingCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"jdwp-inspector": {
"command": "java",
"args": [
"--add-modules",
"jdk.jdi,jdk.attach",
"-DLOG_PATH=${CLAUDE_PLUGIN_ROOT}/logs/mcp-jdwp-inspector.log",
"-jar",
"${CLAUDE_PLUGIN_ROOT}/jdwp-mcp-server/target/mcp-jdwp-java.jar"
],
"env": {
"MCP_TIMEOUT": "30000",
"MCP_TOOL_TIMEOUT": "120000"
}
}
}
}Review these signals before enabling this server
This server has elevated permissions. Review the source code before enabling.
Server configuration and connection parameters
javaCommand-line arguments passed to the server process
Environment variables set when the server starts
MCP_TIMEOUT=30000MCP_TOOL_TIMEOUT=120000Share bugs, ideas, or general feedback.