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

binary-ninja-mcp

v1.0.0

Published

Model Context Protocol server for Binary Ninja - enables seamless integration of Binary Ninja's capabilities with MCP clients

Readme

Binary Ninja MCP Server (TypeScript)

This is the TypeScript implementation of the Binary Ninja MCP bridge server. It provides a standalone MCP server that connects to a running Binary Ninja instance and exposes its capabilities through the Model Context Protocol.

Features

  • Standalone MCP Server: Run independently with any MCP client
  • 50+ Tools: Full access to Binary Ninja's reverse engineering capabilities
  • Easy Configuration: CLI options and environment variables for host/port
  • TypeScript: Full type safety and better developer experience

Installation

Using npx (Recommended)

npx -y @binary-ninja/mcp-server

Global Installation

npm install -g @binary-ninja/mcp-server
binary-ninja-mcp

From Source

cd bridge
npm install
npm run build

Usage

Command Line Options

# Connect to default (localhost:9009)
npx -y @binary-ninja/mcp-server

# Connect to custom host/port
npx -y @binary-ninja/mcp-server --host 192.168.1.100 --port 9009

# Show help
npx -y @binary-ninja/mcp-server --help

Environment Variables

# Set host and port via environment
BINJA_MCP_HOST=localhost BINJA_MCP_PORT=9009 npx -y @binary-ninja/mcp-server

MCP Client Configuration

Claude Desktop

Add to ~/.config/claude-desktop/claude_desktop_config.json:

{
  "mcpServers": {
    "binary-ninja-mcp": {
      "command": "npx",
      "args": ["-y", "@binary-ninja/mcp-server", "--host", "localhost", "--port", "9009"]
    }
  }
}

Cline

Add to your Cline MCP configuration:

{
  "mcpServers": {
    "binary-ninja-mcp": {
      "command": "npx",
      "args": ["-y", "@binary-ninja/mcp-server"]
    }
  }
}

Custom Installation

If installed globally:

{
  "mcpServers": {
    "binary-ninja-mcp": {
      "command": "binary-ninja-mcp",
      "args": ["--host", "localhost", "--port", "9009"]
    }
  }
}

Available Tools

Function Analysis

  • list_methods - List all function names with pagination
  • get_entry_points - List entry point(s) of the loaded binary
  • search_functions_by_name - Search functions by name substring
  • decompile_function - Decompile a function to C code
  • get_il - Get IL (HLIL/MLIL/LLIL) for a function
  • fetch_disassembly - Get assembly mnemonics for a function

Rename Tools

  • rename_function - Rename a function
  • rename_single_variable - Rename a single variable
  • rename_multi_variables - Batch rename multiple variables
  • rename_data - Rename a data label

Comment Tools

  • set_comment - Set comment at an address
  • get_comment - Get comment at an address
  • delete_comment - Delete comment at an address
  • set_function_comment - Set function comment
  • get_function_comment - Get function comment
  • delete_function_comment - Delete function comment

Type Tools

  • define_types - Define types from C code
  • list_local_types - List local types
  • search_types - Search types by name
  • get_user_defined_type - Get user defined type definition
  • get_type_info - Get type information
  • declare_c_type - Declare C type
  • retype_variable - Retype a variable
  • set_local_variable_type - Set local variable type

Data Tools

  • list_data_items - List data labels
  • hexdump_address - Hexdump at address
  • hexdump_data - Hexdump data symbol
  • get_data_decl - Get data declaration and hexdump

Cross-Reference Tools

  • get_xrefs_to - Get xrefs to address
  • get_xrefs_to_field - Get xrefs to struct field
  • get_xrefs_to_struct - Get xrefs to struct
  • get_xrefs_to_type - Get xrefs to type
  • get_xrefs_to_enum - Get xrefs to enum
  • get_xrefs_to_union - Get xrefs to union

Binary Modification Tools

  • set_function_prototype - Set function prototype
  • make_function_at - Create function at address
  • list_platforms - List available platforms
  • patch_bytes - Patch bytes in binary

Utility Tools

  • function_at - Find function at address
  • get_stack_frame_vars - Get stack frame variables
  • list_classes - List classes/namespaces
  • list_namespaces - List namespaces
  • list_segments - List memory segments
  • list_sections - List sections
  • list_imports - List imports
  • list_exports - List exports
  • list_strings - List strings
  • list_all_strings - List all strings (aggregated)
  • get_binary_status - Get binary status
  • list_binaries - List open binaries
  • select_binary - Select active binary
  • format_value - Format and annotate value
  • convert_number - Convert number representations

Requirements

  • Node.js 18.0.0 or higher
  • A running Binary Ninja instance with the MCP plugin
  • MCP client (Claude Desktop, Cline, etc.)

License

GPL-3.0 - See LICENSE file for details.