Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Dejared
D
Health: ActiveRecent health check succeeded.Last checked 8/11/2026, 12:02:29 AM

Dejared

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository4 GitHub StarsTotal stargazers on GitHub for the source repository (4 stars).

Explore, analyze, and decompile Java JAR files via MCP

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "dejared": {
      "command": "npx",
      "args": [
        "-y",
        "dejared-mcp"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

npm version License: MIT Node.js Java

dejared-mcp

A Model Context Protocol (MCP) server for exploring, analyzing, and decompiling Java JAR files. Designed for AI-powered development tools, dejared-mcp connects your IDE or CLI assistant to inspect package structures, search bytecode, and decompile classes using CFR, Vineflower, or Procyon.

Table of Contents

  • Overview
  • Prerequisites
  • Quick Start
  • Features
  • Decompiler Engines
  • Installation and Configuration
  • Custom Java Path
  • Server Configuration
  • How It Works
  • FAQ and Troubleshooting
  • Contributing
  • Third-Party Licenses
  • License

Overview

dejared-mcp is a Java-based MCP server distributed as an npm package. It provides nine tools organized into three categories: discovery, hunting, and deep analysis. AI assistants use these tools to navigate JAR file structures, search for classes and string literals in bytecode, and decompile .class files back to readable Java source code.

The npm package acts as a thin wrapper that downloads and caches the server JAR on first run, then spawns it via java -jar using stdio transport.

Prerequisites

  • Node.js 18 or later
  • Java 17 or later (JRE is sufficient)

Quick Start

Add the following to your MCP client configuration:

config.json
{
  "mcpServers": {
    "dejared": {
      "command": "npx",
      "args": ["-y", "dejared-mcp"]
    }
  }
}

See Installation and Configuration for tool-specific instructions.

Features

Discovery

Browse and read JAR contents.

ToolDescription
dejared_list_packagesList all packages with class counts
dejared_list_classesList classes in a specific package
dejared_list_resourcesList non-class resource files
dejared_read_resourceRead text resources (YAML, XML, properties, JSON, and others)

Hunting

Search inside JAR files.

ToolDescription
dejared_search_classSearch classes by name
dejared_search_stringSearch string literals in bytecode (URLs, SQL, error messages)

Deep Analysis

Inspect metadata and decompile classes.

ToolDescription
dejared_get_metadataExtract class metadata via ASM (fast, no decompilation)
dejared_dump_package_metadataBatch metadata extraction for entire packages
dejared_decompile_classDecompile .class files to Java source code

Decompiler Engines

dejared-mcp supports three decompiler engines. The engine can be specified per request via the dejared_decompile_class tool.

EngineDescription
CFR (default)Reliable general-purpose decompiler
VineflowerModern fork of FernFlower, handles newer Java features well
ProcyonAlternative engine, can handle some edge cases better

Installation and Configuration

The standard configuration below works with most MCP-compatible tools. Expand the relevant section for tool-specific instructions.

config.json
{
  "mcpServers": {
    "dejared": {
      "command": "npx",
      "args": ["-y", "dejared-mcp"]
    }
  }
}
Amp

Add via the Amp VS Code extension settings screen or by updating your settings.json file:

json
"amp.mcpServers": {
  "dejared": {
    "command": "npx",
    "args": ["-y", "dejared-mcp"]
  }
}

Amp CLI:

bash
amp mcp add dejared -- npx -y dejared-mcp
Antigravity Editor

Edit ~/.gemini/antigravity/mcp_config.json:

config.json
{
  "mcpServers": {
    "dejared": {
      "command": "npx",
      "args": ["-y", "dejared-mcp"]
    }
  }
}

Or install through the MCP Store if available.

Claude Code
Terminal
claude mcp add dejared -- npx -y dejared-mcp

Or add it to your project's .mcp.json using the standard config above.

Plugin (Marketplace) installs both the MCP server and the /jar-analysis skill:

Terminal
claude plugin marketplace add hqkh4nh/dejared-mcp
claude plugin install dejared@dejared-mcp-marketplace
Claude Desktop

Edit the Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the standard config above and restart Claude Desktop.

Cline

Add the standard config above to your MCP settings file.

Codex
bash
codex mcp add dejared npx "-y dejared-mcp"

Or edit ~/.codex/config.toml:

toml
[mcp_servers.dejared]
command = "npx"
args = ["-y", "dejared-mcp"]
Copilot CLI

Interactive:

Code
/mcp add

Then fill in:

  • Server Name: dejared
  • Server Type: STDIO
  • Command: npx -y dejared-mcp

Or edit ~/.copilot/mcp-config.json:

config.json
{
  "mcpServers": {
    "dejared": {
      "type": "local",
      "command": "npx",
      "args": ["-y", "dejared-mcp"],
      "tools": ["*"]
    }
  }
}
Cursor

Create or edit .cursor/mcp.json in your project root (project-level) or ~/.cursor/mcp.json (global) using the standard config above.

Gemini CLI
bash
gemini mcp add dejared npx -y dejared-mcp

Or edit ~/.gemini/settings.json (global) or .gemini/settings.json (project) using the standard config above.

Use /mcp in a Gemini CLI session to verify the server is connected.

Goose

Go to Advanced settings > Extensions > Add custom extension. Name to your liking, use type STDIO, and set the command to npx -y dejared-mcp.

JetBrains IDEs

Go to Settings > Tools > AI Assistant > Model Context Protocol (MCP).

Click + Add and configure:

  • Name: dejared
  • Transport: Stdio
  • Command: npx
  • Arguments: -y dejared-mcp
Kiro

Create or edit .kiro/settings/mcp.json using the standard config above.

opencode

Edit ~/.config/opencode/opencode.json:

config.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dejared": {
      "type": "local",
      "command": ["npx", "-y", "dejared-mcp"],
      "enabled": true
    }
  }
}
Qodo Gen

Open Qodo Gen chat panel in VS Code or IntelliJ > Connect more tools > + Add new MCP > Paste the standard config above > Save.

VS Code (GitHub Copilot)

Create or edit .vscode/mcp.json in your project root:

config.json
{
  "servers": {
    "dejared": {
      "command": "npx",
      "args": ["-y", "dejared-mcp"]
    }
  }
}

After saving, click the Start button that appears in the MCP config file, then use Agent mode in Copilot Chat.

Windsurf

Open Windsurf settings, navigate to MCP servers, and add a new server using the command type with npx -y dejared-mcp. Or add the standard config under mcpServers in your settings.

Pure Java (no Node.js required)

If you prefer to run the server JAR directly without Node.js:

  1. Download the latest JAR from GitHub Releases.

  2. Run it:

    bash
    java -jar dejared-mcp-0.2.0.jar
    
  3. Configure your MCP client to use the JAR directly instead of npx:

    config.json
    {
      "mcpServers": {
        "dejared": {
          "command": "java",
          "args": ["-jar", "/path/to/dejared-mcp-0.2.0.jar"]
        }
      }
    }
    

Custom Java Path

If Java is not in your system PATH, set the DEJARED_JAVA_PATH environment variable in your MCP config. This applies to all npx-based configurations:

config.json
{
  "mcpServers": {
    "dejared": {
      "command": "npx",
      "args": ["-y", "dejared-mcp"],
      "env": {
        "DEJARED_JAVA_PATH": "/path/to/java"
      }
    }
  }
}

Server Configuration

PropertyDefaultDescription
dejared.cache.max-size500Max entries in the decompilation LRU cache
dejared.security.max-resource-size5242880Max resource file size (bytes)
dejared.security.decompile-timeout-seconds30Timeout per decompilation

How It Works

The npm package is a thin Node.js wrapper. On first run it:

  1. Checks the platform cache directory for a cached JAR matching the current version.
    • Linux: $XDG_CACHE_HOME/dejared-mcp (defaults to ~/.cache/dejared-mcp)
    • macOS: ~/Library/Caches/dejared-mcp
    • Windows: %LOCALAPPDATA%\dejared-mcp
  2. Downloads the JAR from GitHub Releases if not cached.
  3. Spawns java -jar with stdio inherited for MCP transport.

The server communicates over stdio using the Model Context Protocol.

FAQ and Troubleshooting

Q: Java is installed but the server cannot find it.

Set the DEJARED_JAVA_PATH environment variable in your MCP configuration. See Custom Java Path.

Q: The server fails to start with a permission error.

Ensure that the cached JAR file is readable. The cache location depends on your platform. See How It Works for the cache directory paths.

Q: Decompilation times out or returns an error.

Some classes are difficult to decompile. Try a different engine by specifying vineflower or procyon in the dejared_decompile_class tool. The default timeout is 30 seconds and can be adjusted via dejared.security.decompile-timeout-seconds.

Q: Which Java version do I need?

Java 17 or later. A JRE is sufficient; you do not need a full JDK.

Q: Can I run the server without Node.js?

Yes. Download the JAR from GitHub Releases and run it directly with java -jar. See the "Pure Java" section under Installation and Configuration.

Contributing

Contributions are welcome. Please follow these guidelines:

  1. Fork the repository and create a feature branch from master.
  2. Ensure your changes compile and pass existing tests.
  3. Write clear commit messages describing the purpose of each change.
  4. Open a pull request against master with a description of what the change does and why.

Project Structure

Code
dejared-mcp/
β”œβ”€β”€ bin/            # Node.js CLI entry point
β”œβ”€β”€ lib/            # Node.js wrapper (JAR download and process management)
β”œβ”€β”€ java-mcp/       # Java MCP server (Spring Boot, Gradle)
β”‚   └── src/
β”œβ”€β”€ skills/         # Claude Code plugin skills
β”œβ”€β”€ package.json    # npm package manifest
└── server.json     # MCP Registry manifest

Building from Source

bash
cd java-mcp
./gradlew build

Reporting Issues

Open an issue on GitHub Issues with steps to reproduce the problem, your Java version, and your Node.js version.

Third-Party Licenses

This project uses the following open-source libraries:

LibraryLicense
Spring BootApache 2.0
Spring AIApache 2.0
ASMBSD 3-Clause
CFRMIT
VineflowerApache 2.0
ProcyonApache 2.0

License

This project is licensed under the MIT License.

Related MCP Servers

View all in Developer Tools View all alternatives
  • M
    Mcp

    Analyze your campaigns any way you want, with AI.

    πŸ’» Developer Tools1 views
    Compare vs Mcp β†’
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • M
    MCP Registry Server

    Publish and discover MCP servers via the official MCP Registry. Powered by HAPI MCP server.

    πŸ’» Developer Tools0 views
    Compare vs MCP Registry Server β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’

Frequently Asked Questions about Dejared

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "dejared": { "command": "npx", "args": ["-y", "dejared"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewDejared AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/dejared?style=directory)](https://allmcps.com/mcp/dejared)
HTML Embed
<a href="https://allmcps.com/mcp/dejared"><img src="https://allmcps.com/api/badge/dejared?style=directory" alt="Dejared on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars4
GitHub Star CountTotal stargazers on GitHub representing community popularity (4 stars).
Last commit3mo ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Apr 14, 2026
36Quality signal: Fair Β· 36/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools15/30
Adoption & activity2/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Dejared β†’Install in Claude DesktopInstall in CursorInstall in VS Code