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

mcp-all-server

v1.0.2

Published

MCP Server for MCP-All-Server Gateway - Access GitHub, Stripe, Notion and more through Claude

Readme

MCP All Server

A Model Context Protocol (MCP) server that provides unified access to multiple APIs (GitHub, Stripe, Notion, etc.) through a single API key.

Overview

MCP All Server acts as a bridge between Claude Code (or any MCP client) and various third-party services. Instead of managing multiple API keys and connections, users can connect their services to MCP All Server once and access them all through a single API key.

Installation

npm install -g mcp-all-server

Or use with npx (recommended):

npx mcp-all-server@latest

Configuration

Environment Variables

  • MCP_ALL_SERVER_API_KEY - Your MCP All Server API key (required)
  • MCP_ALL_SERVER_API_BASE - Base URL for MCP All Server functions (required)

Claude Code Setup

Add to your Claude Code settings (settings.json):

{
  "mcpServers": {
    "mcp-all-server": {
      "command": "npx",
      "args": ["-y", "mcp-all-server@latest"],
      "env": {
        "MCP_ALL_SERVER_API_KEY": "your-api-key-here",
        "MCP_ALL_SERVER_API_BASE": "https://YOUR_PROJECT.supabase.co/functions/v1"
      }
    }
  }
}

Available Tools

GitHub

  • github_list_repos - List all your repositories
  • github_create_issue - Create a new issue in a repository
  • github_get_file - Read file contents from a repository

Stripe

  • stripe_list_customers - List customers
  • stripe_create_customer - Create a new customer
  • stripe_list_charges - List charges/payments

Proveedores modulares (cobertura completa por endpoint)

Para proveedores avanzados se expone una herramienta unificada por proveedor:

  • figma_request
  • supabase_request
  • neon_request
  • paypal_request
  • claude_request
  • chatgpt_request
  • gemini_request
  • drive_request
  • google_maps_request
  • youtube_request
  • instagram_business_request
  • meta_ads_request
  • whatsapp_request
  • telegram_request
  • google_ads_request
  • zapier_request
  • stitch_request
  • bytedance_seedream_request
  • nano_banana_request
  • slack_request
  • cloudflare_request
  • tronscan_request
  • polymarket_request
  • prisma_request
  • notion_request
  • n8n_request

Estas herramientas aceptan method, path, query, body y headers para ejecutar cualquier endpoint soportado por la API oficial del proveedor usando la cuenta conectada.

Cuando existe un proxy-* dedicado en Supabase, la tool *_request enruta automáticamente a ese proxy específico. Si no existe, usa proxy-unified como fallback.

Usage Examples

Once configured, you can ask Claude to:

  • "List my GitHub repositories"
  • "Create an issue in my-repo titled 'Fix bug'"
  • "Show my Stripe customers"
  • "Create a Stripe customer for [email protected]"

Getting an API Key

  1. Sign up at MCP All Server
  2. Connect your services (GitHub, Stripe, etc.)
  3. Generate an API key in the dashboard
  4. Use the API key in your MCP configuration

Requirements

  • Node.js 18+
  • An MCP All Server account
  • Connected services (GitHub, Stripe, etc.)

License

MIT