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

@akiojin/unity-mcp-server

v5.5.2

Published

MCP server and Unity Editor bridge — enables AI assistants to control Unity for AI-assisted workflows

Readme

Unity MCP Server (npm package)

MCP (Model Context Protocol) server for Unity Editor integration. Enables AI assistants like Claude and Cursor to interact directly with Unity Editor for automated workflows.

This README documents the npm package. For the Unity package, OpenUPM setup, and the full repository documentation, see:

Quick Start

Using npx (Recommended)

npx @akiojin/unity-mcp-server@latest

HTTP Mode (for HTTP-only networks)

npx @akiojin/unity-mcp-server@latest --http 6401 --no-telemetry
curl http://localhost:6401/healthz

Unity Setup

  1. Install the Unity package from:
  2. Open Unity Package Manager → Add package from git URL
  3. The package starts a TCP server (default port 6400)

MCP Client Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "unity-mcp-server": {
      "command": "npx",
      "args": ["@akiojin/unity-mcp-server@latest"]
    }
  }
}

Tools & Discovery

Unity MCP Server ships 100+ tools. Use the search_tools meta-tool to find the right tool quickly.

{
  "tool": "search_tools",
  "params": {
    "query": "create gameobject",
    "limit": 10
  }
}

More details:

Requirements

  • Unity 2020.3 LTS or newer
  • Node.js 18.x / 20.x / 22.x LTS (23+ not supported)
  • MCP client (Claude Desktop, Cursor, etc.)

Native SQLite preload (optional)

The server uses fast-sql, which can preload a native better-sqlite3 binding when a prebuilt binary is packaged.

  • UNITY_MCP_SKIP_NATIVE_BUILD=1 to skip native preload (forces sql.js fallback)
  • UNITY_MCP_FORCE_NATIVE=1 to require the prebuilt binary (install fails if missing)

Troubleshooting

License

MIT License - see LICENSE file for details.