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

@zudello_private/zudello-mcp

v1.0.16

Published

MCP server for Zudello API integration

Readme

Zudello MCP Server

MCP server for Zudello API integration. Supports MCP 2025-03-26 Streamable HTTP standard with both stateful (session-based) and stateless operation modes.

Features

  • Stdio Mode: Traditional MCP transport for direct client integration
  • HTTP Mode: Streamable HTTP transport (MCP 2025-03-26) with session management
  • Header Authentication: Secure authentication via HTTP headers
  • Stateless Support: Each request carries its own authentication context
  • Streaming: Automatic upgrade to Server-Sent Events for large result sets (>5 items)
  • Session Management: 30-minute session timeout with automatic cleanup

Configuration

Create a .env file or set environment variables:

ZUDELLO_API_URL=https://api.au.3.zudello.io
ZUDELLO_AUTH_TOKEN=your_auth_token_here
ZUDELLO_ORGANIZATION_UUID=your_organization_uuid_here
ZUDELLO_TEAM_UUID=your_team_uuid_here

Usage

Claude Configuration

Add to your Claude MCP settings:

{
  "mcpServers": {
    "zudello": {
      "command": "npx",
      "args": ["@zudello_private/zudello-mcp", "--stdio"],
      "env": {
        "ZUDELLO_API_URL": "https://api.au.3.zudello.io",
        "ZUDELLO_AUTH_TOKEN": "your_auth_token_here",
        "ZUDELLO_ORGANIZATION_UUID": "your_organization_uuid_here",
        "ZUDELLO_TEAM_UUID": "your_team_uuid_here"
      }
    }
  }
}

HTTP Server

Runs on port 3001 with endpoints:

  • /mcp - MCP 2025-03-26 Streamable HTTP endpoint
  • /health - Health check and server info

Authentication

HTTP mode uses header-based authentication for security:

Authorization: Bearer <your-auth-token>
X-API-URL: https://api.au.3.zudello.io
X-Organization: <organization-uuid>
X-Team: <team-uuid>

Example request:

curl -X POST http://localhost:3001/mcp \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer your-token-here" \
  -H "X-API-URL: https://api.au.3.zudello.io" \
  -H "X-Organization: your-org-uuid" \
  -H "X-Team: your-team-uuid" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "search-resources",
      "arguments": {
        "model": "Item",
        "limit": 10
      }
    }
  }'

Development

# Test with MCP Inspector
npm run test:stdio

# Build
npm run build

# Start HTTP server (default)
npm start

# Start stdio server
npm run start:stdio

# Publish
npm publish

Railway Deployment

Prerequisites

  1. A Railway account and project
  2. Railway CLI installed (optional)

Deployment Steps

  1. Set Environment Variables in Railway:

    PORT=3001
    CORS_ORIGIN=https://your-app.com
    NODE_ENV=production

    Note: Do NOT set sensitive variables like auth tokens in Railway. These should be passed via headers in each request.

  2. Deploy using Railway CLI:

    railway link
    railway up

    Or deploy via GitHub integration in Railway dashboard.

  3. Verify Deployment:

    curl https://your-app.railway.app/health

Security Considerations

  • Always use HTTPS in production (Railway provides this)
  • Set CORS_ORIGIN to specific domains, not *
  • Consider implementing rate limiting
  • Monitor usage and set up alerts
  • Use Railway's private networking for internal services

Testing the Deployed Server

# Test with authentication headers
curl -X POST https://your-app.railway.app/mcp \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer your-token" \
  -H "X-API-URL: https://api.au.3.zudello.io" \
  -H "X-Organization: your-org-uuid" \
  -H "X-Team: your-team-uuid" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'