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

@reaatech/mcp-server-auth

v1.1.0

Published

Pluggable authentication middleware for MCP servers

Readme

@reaatech/mcp-server-auth

npm version License: MIT CI

Status: Pre-1.0 — APIs may change in minor versions. Pin to a specific version in production.

Pluggable authentication middleware for MCP servers. Provides API key and Bearer token validation with timing-safe comparison, plus a development-mode bypass.

Installation

npm install @reaatech/mcp-server-auth
# or
pnpm add @reaatech/mcp-server-auth

Feature Overview

  • API key authentication — Validate against a shared secret via x-api-key header
  • Bearer token authentication — Validate via Authorization: Bearer header
  • Constant-time comparison — Uses crypto.timingSafeEqual to prevent timing attacks
  • Dev mode bypass — Automatically skips auth in non-production when no API_KEY is configured
  • Minimal dependency — Only depends on @reaatech/mcp-server-core for config and types

Quick Start

import express from 'express';
import { authMiddleware } from '@reaatech/mcp-server-auth';

const app = express();
app.use(authMiddleware());

app.listen(8080);

API Reference

authMiddleware()

Returns an Express middleware function that validates incoming requests.

import { authMiddleware } from '@reaatech/mcp-server-auth';

app.use(authMiddleware());

Authentication Logic

  • Production with API_KEY set: validates x-api-key or Authorization: Bearer header
  • Production without API_KEY: returns 500 — misconfigured
  • Development without API_KEY (and AUTH_BYPASS_IN_DEV=true): pass-through
  • Invalid credentials: returns 401 with WWW-Authenticate header

Request Context

On successful authentication, the middleware attaches a RequestContext to req.requestContext:

interface RequestContext {
  requestId: string;
  sessionId?: string;
  idempotencyKey?: string;
  apiKey?: string;   // Set to '[REDACTED]' after auth
  ipAddress?: string;
}

This context is consumed by downstream middleware (rate-limit, idempotency, sanitization) and tool handlers.

Configuration

All configuration is read from @reaatech/mcp-server-core's validated environment:

| Variable | Default | Description | |----------|---------|-------------| | API_KEY | — | Shared secret (required in production) | | AUTH_MODE | api-key | api-key or bearer | | AUTH_BYPASS_IN_DEV | true | Skip auth in dev when no key configured |

Production Example

export NODE_ENV=production
export API_KEY=sk-secret-key
export AUTH_MODE=api-key

Development Example

# No API_KEY set — auth is bypassed automatically
export NODE_ENV=development

Integration with the Server

import { createApp } from '@reaatech/mcp-server-engine';
// authMiddleware() is called automatically inside createApp()

const app = await createApp();
app.listen(8080);

The server framework applies authMiddleware() as the first step in the middleware pipeline, before rate limiting, idempotency, and sanitization.

Related Packages

License

MIT