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

@ebb-ai/mcp

v0.9.0

Published

Model Context Protocol server for ebb-ai — carbon-aware scheduling tools for any MCP-compatible agent.

Readme

@ebb-ai/mcp

Model Context Protocol (MCP) server for ebb-ai — exposes carbon-aware task scheduling as MCP tools that any MCP-compatible agent can call.

Install (development, monorepo)

# from the repo root
pnpm install
pnpm --filter @ebb-ai/mcp build

Run

node packages/mcp-server/dist/server.js

The server speaks MCP over stdio. To wire it into an agent client:

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS (Linux/Windows have similar paths):

{
  "mcpServers": {
    "ebb-ai": {
      "command": "node",
      "args": [
        "/ABSOLUTE/PATH/TO/ebb-ai/packages/mcp-server/dist/server.js"
      ],
      "env": {
        "EBB_ELECTRICITY_MAPS_API_KEY": "optional - mock data without it",
        "EBB_DEFAULT_REGION": "US-CAL-CISO"
      }
    }
  }
}

Restart Claude Desktop after editing.

Claude Code

Add ebb-ai to your ~/.claude/mcp.json (or workspace .claude/mcp.json):

{
  "mcpServers": {
    "ebb-ai": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/TO/ebb-ai/packages/mcp-server/dist/server.js"]
    }
  }
}

OpenClaw

Add to ~/.openclaw/mcp.json:

{
  "mcpServers": {
    "ebb-ai": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/TO/ebb-ai/packages/mcp-server/dist/server.js"]
    }
  }
}

Tools exposed

| Tool | Purpose | |---|---| | get_grid_forecast(region, hours?) | Hour-by-hour carbon intensity for a region; useful before deciding whether to defer. | | schedule_task(prompt, deadline, model?, region?, carbon_budget_g?) | Queue a task to run in the cleanest window inside the deadline. Returns a task_id. | | check_queue_status(task_id?) | Inspect the queue or one specific task; includes a carbon receipt once the task has completed. |

Environment variables

| Var | Purpose | |---|---| | EBB_ELECTRICITY_MAPS_API_KEY | API key from electricitymaps.com. If unset, the server falls back to deterministic mock data so you can still run the whole stack locally. | | EBB_DEFAULT_REGION | Electricity Maps zone code, default US-CAL-CISO. |

v0.1 limitations

  • The server schedules dispatch time, but does not yet call the underlying LLM (the agent is expected to execute the prompt itself once the window arrives). Provider adapters and Batch API integration land in v0.2.
  • Queue is in-memory; restarts lose state. SQLite persistence lands in v0.2.
  • Single-region grid feed. Multi-region routing lands in v0.3.

See ../../ROADMAP.md for the full roadmap.