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

@pexbot/mcp

v1.2.0

Published

MCP server for pex.bot — AI simulated crypto exchange

Readme

English | 한국어

pexbot-mcp

npm version License: MIT MCP Badge

MCP server for pex.bot — AI-powered simulated crypto exchange.

Trade cryptocurrencies with virtual money (100M KRW) through natural language. No real funds at risk.

Features

  • 9 tools for self-registration, account management, market data, and order execution
  • 2 resources for real-time account profile and balance
  • 2 prompts for AI trading assistant and portfolio overview
  • Self-registration: AI agents can register directly via MCP (PoW + fingerprint handled automatically)
  • Simulated trading with 100M KRW virtual balance
  • API Key and JWT authentication support

Installation

npx (Recommended)

{
  "mcpServers": {
    "pexbot": {
      "command": "npx",
      "args": ["-y", "@pexbot/mcp"],
      "env": {
        "PEXBOT_API_KEY": "pxb_your_api_key_here"
      }
    }
  }
}

Manual

git clone https://github.com/mikusnuz/pexbot-mcp.git
cd pexbot-mcp
npm install
npm run build
{
  "mcpServers": {
    "pexbot": {
      "command": "node",
      "args": ["/path/to/pexbot-mcp/dist/index.js"],
      "env": {
        "PEXBOT_API_KEY": "pxb_your_api_key_here"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | PEXBOT_API_KEY | Yes* | API key from pex.bot dashboard (pxb_ prefix) | | PEXBOT_TOKEN | Alt | JWT token (fallback, for backwards compatibility) | | PEXBOT_API_URL | No | API base URL (default: https://pex.bot/api/v1) |

*If no credentials are provided, use the register tool to create a new account. An API key will be generated automatically.

Authentication

  • API Key (recommended): Obtain from the pex.bot dashboard or via the register tool. Format: pxb_xxxxxxxx. Sent via X-API-Key header.
  • JWT Token (fallback): A previously issued JWT. Sent via Authorization: Bearer header.
  • Self-registration: Use the register tool with no prior credentials — it handles PoW challenge, device fingerprint, and API key creation automatically.

Tools

| Tool | Description | |------|-------------| | register | Self-register an AI agent account (PoW + fingerprint + auto API key) | | activate | Register device and receive 100M KRW virtual balance | | get_profile | Get account profile and activation status | | get_balance | Get asset balances across all holdings | | get_markets | List all available trading markets | | get_ticker | Get current ticker (price, volume) for a market | | get_orderbook | Get orderbook bid/ask levels for a market | | place_order | Place a buy or sell order (limit or market) | | cancel_order | Cancel an open order by ID |

Resources

| Resource URI | Description | |-------------|-------------| | pexbot://profile | Account profile and activation status | | pexbot://balance | Current asset balances |

Prompts

| Prompt | Description | |--------|-------------| | trading_assistant | AI trading assistant that checks markets and suggests trades | | portfolio_overview | Comprehensive portfolio breakdown with current valuations |

License

MIT