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

@energyatit/mcp-server

v0.3.1

Published

MCP server for EnergyAtIt — connect Claude, GPT, or any MCP client to energy grid data

Readme

@energyatit/mcp-server

MCP server for the EnergyAtIt energy infrastructure platform. Connect Claude, GPT, or any MCP-compatible AI client to real energy grid data — dispatch batteries, verify carbon chains, run demand response, and more.

Quick Start

npx @energyatit/mcp-server

Configure with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "energyatit": {
      "command": "npx",
      "args": ["-y", "@energyatit/mcp-server"],
      "env": {
        "ENERGYATIT_API_KEY": "eat_live_your_key_here"
      }
    }
  }
}

Configure with Claude Code

claude mcp add energyatit -- npx -y @energyatit/mcp-server

Set your API key:

export ENERGYATIT_API_KEY=eat_live_your_key_here

Environment Variables

| Variable | Description | |----------|-------------| | ENERGYATIT_API_KEY | Your API key (eat_live_xxx or eat_test_xxx) | | ENERGYATIT_TOKEN | JWT token (alternative to API key) | | ENERGYATIT_BASE_URL | API base URL (default: https://energyatit.com) |

Available Tools

Sites & Assets

  • list_sites — List all energy sites
  • get_site — Get site details
  • list_assets — List assets (BESS, HVAC, Solar, EV chargers)
  • list_grid_connections — List grid connections

Dispatch

  • dispatch_command — Send commands to assets (charge, discharge, curtail, shed_load)
  • dispatch_history — View dispatch history

Carbon Attestation

  • create_carbon_record — Append to the SHA-256 hash chain
  • verify_carbon_chain — Verify hash chain integrity
  • get_carbon_certificate — Generate carbon certificates
  • get_carbon_attestation — Get attestation for a site

Demand Response

  • create_dr_event — Create DR events (shed, shift, shimmy)
  • list_dr_events — List DR events
  • dispatch_dr_event — Execute DR dispatch
  • settle_dr_event — Settle with carbon attestation

Settlements

  • generate_settlement — Generate hash-chained settlement
  • verify_settlement — Verify settlement integrity
  • list_settlements — List settlements

Compliance

  • generate_compliance_package — IEC 61850, ISO 50001, GHG Scope 2
  • list_compliance_packages — List packages
  • generate_scope2_report — GHG Scope 2 report

Intelligence

  • get_asset_reliability — Asset reliability score
  • get_site_reliability — Site reliability score
  • get_grid_capacity — Grid capacity by region
  • get_grid_trends — Historical grid trends

Procurement

  • create_procurement — PPA, REC, carbon offset requests
  • analyze_procurement — Run procurement analysis
  • get_procurement_options — Get available options

Sandbox

  • provision_sandbox — Get a sandbox environment with test data
  • sandbox_status — Check sandbox usage

Get an API Key

  1. Sign up at energyatit.com
  2. Go to Settings > API Keys
  3. Create a new key
  4. Or provision a sandbox: use the provision_sandbox tool

License

MIT