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

@pixi-board/mcp

v0.5.0

Published

`@pixi-board/mcp` is the stdio MCP server for Pixi Board. It exposes board tool discovery and invocation so local agent CLIs can use board capabilities registered by local plugin packages.

Readme

Pixi Board MCP

@pixi-board/mcp is the stdio MCP server for Pixi Board. It exposes board tool discovery and invocation so local agent CLIs can use board capabilities registered by local plugin packages.

Usage

Run the server with npx:

npx -y @pixi-board/mcp@latest

Codex configuration:

[mcp_servers.canvas]
command = "npx"
args = ["-y", "@pixi-board/mcp@latest"]

Claude Code and opencode can use the same stdio command:

npx -y @pixi-board/mcp@latest

Board Tools

The MCP server exposes two fixed MCP tools:

  • list_board_tools
  • call_board_tool

Call list_board_tools to discover concrete capabilities, then call one with:

{
  "name": "canvas.list_nodes",
  "input": {
    "projectRoot": "active"
  }
}

Plugins

Board capabilities are loaded from local plugin zip files. The default config path is:

~/.pixi-board/mcp/plugins.json

Override it with BOARD_PLUGINS_CONFIG=/absolute/path/plugins.json.

If the file does not exist, the MCP server creates:

{
  "pluginRoot": "/Users/you/.pixi-board/plugins",
  "pluginOrder": [],
  "envByPlugin": {}
}

Put plugin zip files in pluginRoot to enable tools:

~/.pixi-board/plugins/
  pixi-board-plugin-canvas.zip
  pixi-board-plugin-mivo.zip

Each plugin zip should contain one package at its root or first directory level. The package should export a BoardPlugin as plugin or default. The loader resolves the entry from package.json using exports.import, exports.default, module, main, then dist/index.js.

Plugin environment variables live under the plugin name:

{
  "pluginRoot": "/Users/you/.pixi-board/plugins",
  "pluginOrder": [
    "pixi-board-plugin-canvas.zip",
    "pixi-board-plugin-mivo.zip"
  ],
  "envByPlugin": {
    "pixi-board-plugin-mivo": {
      "MIVO_API_KEY": "..."
    }
  }
}

The desktop plugin manager can reorder pluginOrder by drag and drop, then refresh the local MCP bridge. The MCP server reloads local plugins before each tool call, so the next list_board_tools or call_board_tool sees the updated plugin root and order. New plugin acquisition can be implemented independently; @pixi-board/mcp only cares about the local plugin root.

Project Roots

Canvas tools accept a projectRoot argument. Use "active" for the current Pixi Board project, or pass an absolute path to a Pixi Board project directory.

Read tools can load project files directly. Write tools such as canvas.create_nodes, canvas.update_nodes, and canvas.update_assets require the Pixi Board desktop app to be running with the target project open.

canvas.create_nodes creates nodes from local source files, except kind: "generating" which creates a lightweight placeholder without a path. For text, Markdown, or HTML nodes, write the content to a .txt, .md, or .html file first and pass that file path. Do not pass x or y; the desktop canvas chooses placement and returns the created node coordinates.

Mivo

Mivo generation tools are provided by pixi-board-plugin-mivo. They create generating nodes, submit requests directly to the Mivo API, read results through SSE with polling fallback, download results by file id, and install them into the generating nodes. The current batch tools are mivo.create_gpt_images, mivo.create_nano_images, mivo.create_kling_videos, and mivo.create_seedance_videos; each accepts projectRoot plus a payloads array and submits requests 5 seconds apart by default.

Set MIVO_API_KEY in envByPlugin["pixi-board-plugin-mivo"], or save it from the desktop plugin manager. MIVO_API_BASE is optional and defaults to production.