jdwp-mcp CLAUDE.md

jdwp-mcp CLAUDE.md is an instructions file for coding agents from dronsv/jdwp-mcp. It costs 1,016 tokens per session, scanned A, original, from a forked repository, MIT.

A repository guide for jdwp-mcp, a Rust MCP server that lets an AI assistant debug Java programs through Java’s debugging protocol. It covers the project structure, build commands, and architecture.

In plain words
What is it for?
Use it when building, testing, or changing the Java debugging server or its low-level network client.
Why use it?
It explains how the server connects the assistant to a running Java program and how its Rust components fit together.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/dronsv/jdwp-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/dronsv/jdwp-mcp

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for jdwp-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dronsv/jdwp-mcp/claude-md.svg)](https://agentmods.dev/instructions/dronsv/jdwp-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/dronsv/jdwp-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/dronsv/jdwp-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,016 This file is loaded in full into every session.
When invoked 1,016 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin fork From a forked repository.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01016 $0.01016
Opus 5 $0.00508 $0.00508
Sonnet 5 $0.00203 $0.00203
Haiku 4.5 $0.00102 $0.00102

Measured 4d ago against content hash 7efb63ecc472, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

jdwp-mcp CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

What This Is

jdwp-mcp is an MCP (Model Context Protocol) server that enables LLMs to debug Java applications via JDWP (Java Debug Wire Protocol). It's a Rust workspace with two crates:

  • jdwp-client: Low-level JDWP protocol client library (TCP connection, binary packet encoding/decoding, event loop)
  • mcp-server: MCP server binary (jdwp-mcp) that translates MCP JSON-RPC over stdio into JDWP commands

Build Commands

cargo build                # debug build
cargo build --release      # release build (binary at target/release/jdwp-mcp)
cargo test                 # run all tests
cargo test -p jdwp-client  # test just the client crate
cargo test -p jdwp-mcp     # test just the MCP server crate

Architecture

LLM (Claude Code) --[stdio JSON-RPC]--> mcp-server --[JDWP binary over TCP]--> JVM

jdwp-client crate

The client implements JDWP over an async event loop:

  • connection.rsJdwpConnection: TCP connect, JDWP handshake, entry point for sending commands
  • eventloop.rsEventLoopHandle: tokio task that multiplexes outgoing commands and incoming replies/events on one TCP stream. Commands get routed by packet ID; events go to an mpsc channel. Commands can be sent from multiple tasks; events should be consumed by one.
  • protocol.rsCommandPacket/ReplyPacket: binary encoding/decoding (big-endian, architecture-independent)
  • commands.rs — JDWP command set/command constants (mirrors the spec)
  • types.rsValue, Location, Variable, type tags
  • events.rs — Event parsing (breakpoint, step, thread start/death, VM death)
  • vm.rs, thread.rs, method.rs, reftype.rs, stackframe.rs, object.rs, string.rs — Higher-level command wrappers organized by JDWP command set
  • reader.rs — Cursor-based reader for JDWP data with variable-width ID fields
  • eventrequest.rs — Event request building (breakpoints, stepping)

Read the full file on GitHub · 93 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 93 lines · 1,016 tokens per session scan A 7efb63ecc472

Subscribe to this mod's changes

jdwp-mcp CLAUDE.md is an instructions file published in the GitHub repository dronsv/jdwp-mcp (1 stars, last pushed 4mo ago), licensed MIT. It adds 1,016 tokens to every session, about $0.0051 per session on Opus 5. A static security scan graded it A with 0 findings. It comes from a forked repository.