jar-tools-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@jar-tools-mcpScan ./vendor/example.jar for supply-chain risks"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
jar-tools-mcp
MCP server for jar.tools' JAR security scanner. Scan a local .jar, .zip, or .class file for supply-chain risk — network activity, file access, process execution, and obfuscation/decompiler-evasion signals — directly from an AI agent, without opening a browser.
Features
Static behavioral analysis of
.jar/.zip/.classfiles — the file is never executedSuspicious-class counts broken down by category (network, file access, process execution, hard-to-review code)
Decompiler-anomaly detection (obfuscation/evasion signals)
Optional Pro license key raises the
.jarsize cap from 64MB to 256MB
Related MCP server: ai-scanner-mcp
Use Cases
Audit a dependency before adding it to a build — scan a resolved JAR pulled from Maven/Gradle before trusting it
Investigate a suspicious plugin or mod — check a Minecraft mod or IDE plugin JAR before installing
Review a vendor SDK — static analysis of a third-party binary before shipping it to production
Installation
npm install -g github:gogainda/jar-tools-mcpUntil the npm registry release is available, this installs directly from the public GitHub repository. No API key is required for the default free tier.
Configuration
Codex Setup
Add the MCP server with the Codex CLI:
codex mcp add jar-tools -- npx -y github:gogainda/jar-tools-mcpVerify that Codex can see it:
codex mcp listYou can also add it manually to ~/.codex/config.toml:
[mcp_servers.jar-tools]
command = "npx"
args = ["-y", "github:gogainda/jar-tools-mcp"]For Pro scans, export JARTOOLS_LICENSE_KEY before starting Codex and allow the
MCP server to receive it:
[mcp_servers.jar-tools]
command = "npx"
args = ["-y", "github:gogainda/jar-tools-mcp"]
env_vars = ["JARTOOLS_LICENSE_KEY"]In an active Codex session, use /mcp to confirm that jar-tools is connected.
Claude Code Setup
Add the MCP server using the CLI:
claude mcp add jar-tools -- npx -y github:gogainda/jar-tools-mcpOr add manually to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"jar-tools": {
"command": "npx",
"args": ["-y", "github:gogainda/jar-tools-mcp"]
}
}
}Optional: Pro License Key
If you have a jar.tools Pro license and need to scan .jar files larger than 64MB:
export JARTOOLS_LICENSE_KEY=your-license-keyOr pass license_key as a tool argument on individual calls.
Usage
Ask your agent to scan a file:
Scan ./vendor/some-library.jar for supply-chain risk before I add it as a dependency.The tool returns a text summary (suspicious-class count, top signal categories, decompiler-anomaly flags) plus the full JSON findings report.
API Reference
This server is a thin wrapper around the public jar.tools Security Scan API (POST /api/v1/security-scan/jar-report / class-report). See that page for the full response schema if you want to parse the JSON output yourself.
Development
# Build
npm run build
# Test
npm test
# Run directly
node dist/index.jsAuthor
Visit my personal site: https://igorstechnoclub.com
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gogainda/jar-tools-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server