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

datacenter-mcp-server

v1.0.0

Published

Mission-critical data center design & engineering MCP server. Provides cooling load calculations, power redundancy analysis, tier classification assessment, and commissioning workflow tools for AI agents.

Readme

datacenter-mcp-server

Mission-critical data center engineering tools for AI agents. 8 professional-grade calculation engines covering cooling, power, GPU thermal optimization, UPS/battery sizing, tier classification, and commissioning workflows.

Built on the Model Context Protocol (MCP) standard — works with Claude Desktop, Cursor, Windsurf, Cline, and any MCP-compatible client.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "datacenter": {
      "command": "npx",
      "args": ["-y", "datacenter-mcp-server"]
    }
  }
}

Cursor / Windsurf

Add to your MCP settings:

{
  "datacenter": {
    "command": "npx",
    "args": ["-y", "datacenter-mcp-server"]
  }
}

HTTP Mode (Remote)

TRANSPORT=http PORT=3001 API_KEY=your-secret npx datacenter-mcp-server

Tools

dc_calculate_cooling_load

Calculate ASHRAE-compliant cooling requirements for any data center facility. Inputs include IT load, redundancy level, climate zone, altitude, and humidity targets. Returns tonnage, airflow, chilled water capacity, and energy estimates.

dc_analyze_power_redundancy

Analyze electrical distribution from utility feed through UPS, PDU, and rack-level power. Supports N, N+1, 2N, and 2N+1 redundancy configurations with efficiency and cost analysis.

dc_assess_tier_classification

Evaluate facility design against Uptime Institute Tier I-IV standards. Identifies compliance gaps and provides actionable upgrade recommendations.

dc_generate_commissioning_plan

Generate L1-L5 commissioning workflows with phase sequencing, test procedures, and documentation requirements per ASHRAE Guideline 0.

dc_analyze_rack_density

Analyze rack power density configurations from 5 kW to 100+ kW per rack. Covers cooling strategy selection, weight loading, and power distribution.

dc_gpu_cooling_optimizer

Optimize cooling infrastructure for GPU/AI workloads (H100, A100, H200, B200, GB200). Calculates thermal loads, recommends cooling strategies (air, rear-door, direct liquid, immersion), sizes CDUs, and projects energy savings.

dc_ups_battery_sizing

Size UPS modules and battery systems with N/N+1/2N/2N+1 redundancy. Compares VRLA vs lithium-ion with 10-year TCO analysis, floor space estimates, and weight calculations.

dc_reference_lookup

Query ASHRAE standards, Uptime Institute tier requirements, and industry best practices for data center design and operations.

Engineering Standards

All calculations comply with:

  • ASHRAE TC 9.9 thermal guidelines
  • Uptime Institute Tier Standard topology
  • NFPA 70 / NEC electrical code
  • ASHRAE Guideline 0 commissioning

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests (264 tests across 7 suites)
npm test

# Start in stdio mode (MCP default)
npm start

# Start in HTTP mode
npm run start:http

# Inspect with MCP Inspector
npm run inspect

Architecture

src/
  index.ts          # MCP server entry point, tool registration
  types.ts          # TypeScript interfaces for all tools
  constants.ts      # Engineering constants and reference data
  middleware.ts      # Express middleware (auth, rate limiting, CORS)
  schemas/          # Zod validation schemas per tool
  services/         # Calculation engines per tool
tests/              # Jest test suites (264 tests)

License

MIT - NextGen Mission Critical