Decompiles Java .class files, packages, and JARs into readable source code, enabling AI assistants to inspect Java bytecode
Local Onlyidachev
Awaiting current scanNpm · 1.2.4
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
1Distribution channel
3Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence
Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.
Install and connect
Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
Independent exact-version security scans
Continuous release and vulnerability monitoring
Risk-change alerts with capability context
Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.
Current version evidence
No public current-version evidence is available yet.
Current protocol inventory
2025-06-18Negotiated protocol
javadcServer-reported name
1Capability groups
Aug 14, 2026Observed
Tools 3
Tool
Category
Annotations
Risk
decompile-from-jarDecompiles a Java class from a JAR file
# Using mcp_javadc with Maven Repository
When you need to decompile Java classes from dependencies in the M2 repository, follow these steps:
## Step 1: Find the JAR file location
First, search for the dependency JAR in the local Maven repository:
```bash
find ~/.m2 -name "*dependency-name*jar" | grep -v source | grep -v javadoc
```
Notes:
- Replace dependency-name with the artifact name
- Filter out source and javadoc JARs using grep
- Look for the correct version based on the project's POM file
## Step 2: Use the correct mcp_javadc function
Once you have the JAR path, use this function:
For specific class decompilation:
- jarFilePath: The absolute path to the JAR (from Step 1)
- className: Fully qualified class name to decompile
For contextual exploration:
If needed, first try to find all available classes in the JAR:
`jar tf /path/to/the.jar | grep .class | sort`
Example workflow:
1. Read the POM file to identify dependency version
2. Search the M2 repository for the JAR
3. Use mcp_javadc to decompile relevant classes
4. If multiple versions exist, select the one matching the project's version requirementInput schema
{
"type": "object",
"properties": {
"jarFilePath": {
"type": "string",
"description": "The absolute path to the JAR file"
},
"className": {
"type": "string",
"description": "Fully qualified class name to decompile from the JAR (e.g., \"com.example.MyClass\")"
}
},
"required": [
"jarFilePath",
"className"
]
}
—
—
decompile-from-packageDecompiles a Java class from a package nameInput schema
decompile-from-pathDecompiles a Java .class file from a given file pathInput schema
{
"type": "object",
"properties": {
"classFilePath": {
"type": "string",
"description": "The absolute path to the .class file"
}
},
"required": [
"classFilePath"
]
}
—
—
Resources 0
None observed.
Resource templates 0
None observed.
Prompts 0
None observed.
Remote endpoints
Endpoint
Transport
Authentication
Health
Observed
No verified remote endpoint is linked.
MCP Java Decompiler Server MCP Server questions
How do I install MCP Java Decompiler Server MCP Server?
Install the selected package version with: npm install --save-exact @idachev/mcp-javadc@1.2.4
What tools does MCP Java Decompiler Server MCP Server provide?
MCP Java Decompiler Server MCP Server exposed 3 tools during independent protocol observation, including decompile-from-jar, decompile-from-package, decompile-from-path.
Is MCP Java Decompiler Server MCP Server secure?
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
Explore related MCP server guides
Curated product and capability guides containing this catalog record.