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 🙏

© 2025 – Pkg Stats / Ryan Hefner

nobody-mcp-server

v1.0.2

Published

MCP server

Readme

🚀 Unified MCP Server

A production-ready, single MCP server that contains multiple embedded MCP servers. Perfect for developers who want multiple MCP capabilities in one package that can be easily extended, compiled, and published.

🎯 What This Is

This is one MCP server that contains 5 MCP servers built directly into the code:

  • 📁 Filesystem Server: File operations (read, write, list, search, create directories)
  • 🔍 Web Search Server: Web search and content extraction
  • 🗄️ Database Server: SQLite operations with backup/restore
  • 🧮 Calculator Server: Mathematical calculations and advanced functions
  • 💻 System Server: System monitoring and process management

🚀 Quick Start - Copy & Paste Configuration

For Claude Desktop (or any MCP client):

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

That's it! This single configuration gives you access to all 5 embedded servers.

Alternative Installation Methods:

{
  "mcpServers": {
    "unified-mcp": {
      "command": "node",
      "args": ["/path/to/unified-mcp-server/dist/index.js"]
    }
  }
}

Or install globally:

npm install -g unified-mcp-server

Then use:

{
  "mcpServers": {
    "unified-mcp": {
      "command": "unified-mcp-server"
    }
  }
}

🛠️ Available Tools

Once configured, you'll have access to these tools:

Filesystem Operations

  • filesystem:read_file - Read file contents
  • filesystem:write_file - Write to files
  • filesystem:list_files - List directory contents
  • filesystem:search_files - Search for files
  • filesystem:create_directory - Create directories
  • filesystem:delete_file - Delete files
  • filesystem:file_info - Get file information

Web Search & Content

  • web-search:search_web - Search the web
  • web-search:fetch_webpage - Fetch webpage content
  • web-search:get_page_title - Get page titles
  • web-search:extract_links - Extract links from pages

Database Operations

  • database:execute_query - Run SQL queries
  • database:create_note - Create notes
  • database:list_notes - List all notes
  • database:search_notes - Search notes
  • database:backup_database - Backup database
  • database:restore_database - Restore from backup

Calculator & Math

  • calculator:calculate - Basic calculations
  • calculator:convert_units - Unit conversions
  • calculator:statistics - Statistical calculations
  • calculator:random_number - Generate random numbers
  • calculator:advanced_math - Advanced mathematical functions

System Monitoring

  • system:system_info - Get system information
  • system:memory_usage - Check memory usage
  • system:cpu_info - Get CPU information
  • system:process_info - List running processes
  • system:disk_usage - Check disk usage

🔧 For Developers: Adding Your Own Servers

Step 1: Create Your Server

Create src/servers/my-custom-server.ts:

export class MyCustomServer {
  async getTools() {
    return [
      {
        name: 'my_tool',
        description: 'My custom tool',
        inputSchema: {
          type: 'object',
          properties: {
            input: { type: 'string', description: 'Input parameter' }
          },
          required: ['input']
        }
      }
    ];
  }

  async callTool(name: string, args: any) {
    switch (name) {
      case 'my_tool':
        return {
          content: [{
            type: 'text',
            text: `Processed: ${args.input}`
          }]
        };
      default:
        throw new Error(`Unknown tool: ${name}`);
    }
  }

  async getResources() { return []; }
  async getPrompts() { return []; }
  async cleanup() { /* cleanup code */ }
}

Step 2: Register Your Server

Add to src/config/server-registry.ts:

import { MyCustomServer } from '../servers/my-custom-server.js';

export const SERVER_REGISTRY: ServerConfig[] = [
  // ... existing servers
  {
    name: 'my-custom',
    description: 'My custom functionality',
    enabled: true,
    serverClass: MyCustomServer,
    category: 'custom',
    version: '1.0.0',
    tags: ['custom', 'example']
  }
];

Step 3: Build and Publish

# Build the updated server
npm run build

# Test locally
npm start

# Update version and publish
npm version patch
npm publish

🏗️ Development Setup

# Clone the repository
git clone <your-repo-url>
cd unified-mcp-server

# Install dependencies
npm install

# Build the project
npm run build

# Test the server
npm start

# Run CLI tools
npm run health    # Health checks
npm run info      # Server information
npm run benchmark # Performance tests

📦 Publishing Your Custom Version

  1. Fork this repository
  2. Add your custom servers to src/servers/
  3. Update the registry in src/config/server-registry.ts
  4. Update package.json with your package name
  5. Build and test: npm run build && npm start
  6. Publish: npm publish

Your users can then use:

{
  "mcpServers": {
    "my-custom-mcp": {
      "command": "npx",
      "args": ["-y", "your-package-name"]
    }
  }
}

🔍 Troubleshooting

Server Not Starting

# Check if it builds correctly
npm run build

# Test with simple version
npm run start:simple

# Check logs
npm run health

Tools Not Working

# Validate configuration
npm run validate

# Check server info
npm run info

📄 License

MIT License - feel free to use, modify, and distribute.


Made for the MCP community 🤝