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

eolas-openclaw-mcp

v1.0.0

Published

OpenClaw plugin — bridges EOLAS Edge (trading) and EOLAS Reach (social) MCP tools natively into your AI agent

Readme

eolas-openclaw-mcp

Trade perps and post to social — all from one AI conversation.

OpenClaw plugin that bridges EOLAS Edge (on-chain perpetual trading via Orderly Network) and EOLAS Reach (X/Twitter + Telegram + image generation) into native agent tools.

Once installed, just talk to your OpenClaw agent:

"Long ETH with $20, 3% stop loss, 6% take profit" → executes on-chain
"Post this trade to Telegram" → done
"Scan for the best opportunity right now" → screens all markets

No switching tabs. No copying addresses. One conversation.


Install

openclaw plugins install eolas-openclaw-mcp

Then restart your gateway:

openclaw gateway restart

Configuration

Add to your ~/.openclaw/openclaw.json:

{
  "plugins": {
    "allow": ["eolas-openclaw-mcp"],
    "entries": {
      "eolas-openclaw-mcp": {
        "enabled": true,
        "config": {
          "telegramBotToken": "your-telegram-bot-token",
          "creatorBidApiKey": "your-creatorbid-key",
          "replicateApiToken": "your-replicate-token"
        }
      }
    }
  },
  "agents": {
    "list": [
      {
        "id": "main",
        "tools": {
          "allow": ["eolas-openclaw-mcp"]
        }
      }
    ]
  }
}

All config keys are optional — only add what you need:

| Key | Required for | |---|---| | telegramBotToken | Telegram messaging | | creatorBidApiKey | X/Twitter posting | | replicateApiToken | Image & video generation |


Prerequisites

Install the EOLAS MCP servers globally:

npm install -g eolas-edge-mcp eolas-reach-mcp

Note: Requires eolas-edge-mcp >= 2.0.2 for Node v20+ compatibility.
If on an older version, run: npm install -g eolas-edge-mcp@latest


What You Get

Trading Tools (EolasEdge → Orderly Network, Base mainnet)

| Tool | What it does | |---|---| | eolas_get_markets | List all perp markets | | eolas_get_market_info | Price, funding rate, OI for a symbol | | eolas_get_account_balance | Your USDC balance | | eolas_get_positions | Open positions | | eolas_get_orders | Order history | | eolas_get_tradingview_candles | OHLCV candle data | | eolas_place_order | Market / limit / stop order | | eolas_place_bracket_order | Order with TP + SL attached | | eolas_cancel_order | Cancel by order ID | | eolas_close_all_positions | Emergency close everything | | eolas_manage_funds | Deposit / withdraw USDC | | eolas_screen_assets | Scan markets for opportunities | | eolas_swap_token_on_uniswap | Swap tokens on Uniswap (Base) |

Social Tools (EolasReach)

| Tool | What it does | |---|---| | eolas_create_twitter_post | Post a tweet as the EOLAS agent | | eolas_reply_to_twitter_post | Reply to a tweet | | eolas_get_twitter_mentions | Read @mentions | | eolas_send_telegram_message | Send to Telegram | | eolas_get_telegram_updates | Read Telegram messages | | eolas_generate_image | Generate image via Replicate | | eolas_generate_brand_image | EOLAS-branded image | | eolas_generate_seedance_video | Generate video |


Quick Start

1. Fund your trading wallet

Ask your agent: "What is my trading wallet address?"
Send USDC (Base network) to that address.

2. Deposit to Orderly

"Deposit $20 to my Orderly account"

3. Trade

"Long BTC with $15, 3% stop loss"
"Show my open positions"
"Close everything"

4. Post about it

"Send a Telegram message: EOLAS just longed BTC at $X"


How It Works

The plugin spawns eolas-edge-mcp and eolas-reach-mcp as child processes when the OpenClaw gateway starts. It communicates with them via the MCP stdio protocol, discovers all available tools, and registers each one as a native OpenClaw agent tool. Credentials are stored in ~/.openclaw/eolas/keychain.json.


Links


License

MIT