npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@xi0yu/jebmcp

v2.0.3

Published

MCP (Model Context Protocol) proxy for JEB reverse engineering platform - enables AI assistants to interact with JEB through standardized protocol

Readme

JEB MCP

A Model Context Protocol (MCP) server for JEB reverse engineering platform. This server enables AI assistants like Claude to interact with JEB through the standardized MCP protocol.

Installation

npm install @xi0yu/jebmcp

Quick Start

Claude Desktop Configuration

To use this with Claude Desktop, add the following to your claude_desktop_config.json:

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

{
  "mcpServers": {
    "jeb": {
      "command": "npx",
      "args": ["-y", "@xi0yu/jebmcp"]
    }
  }
}

VS Code Configuration

Add the following to your VS Code User Settings (JSON) by pressing Ctrl + Shift + P and typing "Preferences: Open User Settings (JSON)":

{
  "mcp": {
    "servers": {
      "jeb": {
        "command": "npx",
        "args": ["-y", "@xi0yu/jebmcp"]
      }
    }
  }
}

Alternatively, create a .vscode/mcp.json file in your workspace:

{
  "servers": {
    "jeb": {
      "command": "npx",
      "args": ["-y", "@xi0yu/jebmcp"]
    }
  }
}

Usage

Basic Usage

npx @xi0yu/jebmcp

Transport Modes

# STDIO mode (default)
npx @xi0yu/jebmcp --transport stdio

# HTTP mode
npx @xi0yu/jebmcp --transport http --port 16162

# SSE mode  
npx @xi0yu/jebmcp --transport sse --port 16162

Custom JEB Connection

npx @xi0yu/jebmcp --jeb-host 127.0.0.1 --jeb-port 16161 --jeb-path /mcp

Configuration

Environment Variables

You can configure the proxy using environment variables:

{
  "mcpServers": {
    "jeb": {
      "command": "npx",
      "args": ["-y", "@xi0yu/jebmcp"],
      "env": {
        "JEB_HOST": "127.0.0.1",
        "JEB_PORT": "16161",
        "LOG_ENABLED": "true"
      }
    }
  }
}

Available Environment Variables

  • JEB_HOST: JEB server host (default: 127.0.0.1)
  • JEB_PORT: JEB server port (default: 16161)
  • JEB_PATH: JEB MCP endpoint path (default: /mcp)
  • LOG_ENABLED: Enable detailed logging (default: false)

Requirements

  • Node.js: Version 16.0.0 or higher
  • Python: Version 3.8 or higher
  • JEB: JEB reverse engineering platform with MCP support

Troubleshooting

Node.js Version Requirements

Problem: Error message: Cannot find module 'node:path'

Solution: Upgrade your Node.js installation to version 18 or later. Make sure the command in config points to the correct Node.js version.

Python Not Found

Problem: python3: command not found or similar Python-related errors

Solution:

  1. Ensure Python is installed and available in your PATH
  2. Install required Python dependencies: pip install fastmcp>=0.1.0
  3. On Windows, the proxy automatically detects whether to use python or python3

Connection Issues

Problem: Unable to connect to JEB server

Solution:

  1. Ensure JEB is running and MCP server is enabled
  2. Verify the JEB MCP server is listening on the correct host and port
  3. Check firewall settings if connecting to a remote JEB instance

Logging and Debug

Enable detailed logging by setting the LOG_ENABLED environment variable:

{
  "mcpServers": {
    "jeb": {
      "command": "npx",
      "args": ["-y", "@xi0yu/jebmcp"],
      "env": {
        "LOG_ENABLED": "true"
      }
    }
  }
}

Development

Building from Source

git clone https://github.com/xi0yu/jeb-mcp.git
cd jeb-mcp-npm
npm install
pip install -r requirements.txt

Testing

# Test the proxy
npm test

# Manual testing
node bin/index.js --help

License

Apache-2.0

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Related Projects