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

@mazhu/mcp-cloud

v1.0.0

Published

MCP Server 托管平台 - 一键部署你的 MCP Server

Readme

MCP Cloud 🚀

一键部署你的 MCP Server 到云端,无需自己运维。

功能特性

  • 用户注册/登录 - 简单的邮箱+密码认证
  • MCP Server 部署 - 上传代码,平台自动部署
  • URL 生成 - 每个用户获得唯一的 MCP Server URL
  • 用量统计 - 显示调用次数、活跃用户等
  • 定价页面 - 免费版(1000次/月) + Pro版($9/月无限)

技术栈

  • 前端: HTML + Tailwind CSS
  • 后端: Node.js + Express
  • 数据库: SQLite
  • 认证: JWT

快速开始

1. 安装依赖

npm install

2. 初始化数据库

npm run init-db

3. 启动服务器

npm start

开发模式(带热重载):

npm run dev

4. 访问应用

打开浏览器访问 http://localhost:3000

项目结构

mcp-cloud/
├── src/
│   ├── server.js           # 主服务器入口
│   ├── init-db.js          # 数据库初始化
│   ├── db.js               # 数据库连接
│   ├── routes/
│   │   ├── auth.js         # 认证路由
│   │   ├── user.js         # 用户路由
│   │   ├── deploy.js       # 部署路由
│   │   ├── stats.js        # 统计路由
│   │   └── mcp-proxy.js    # MCP 代理路由
│   └── middleware/
│       └── auth.js         # 认证中间件
├── public/                  # 静态文件
│   ├── index.html
│   ├── pricing.html
│   ├── dashboard.html
│   ├── docs.html
│   └── js/
│       └── app.js
├── db/                      # 数据库文件
├── uploads/                 # 上传的代码文件
├── package.json
└── README.md

API 端点

认证

  • POST /api/auth/register - 注册
  • POST /api/auth/login - 登录

用户

  • GET /api/user/me - 获取当前用户信息

部署

  • POST /api/deploy - 部署 MCP Server
  • GET /api/deploy - 获取用户的所有 Server
  • DELETE /api/deploy/:id - 删除 Server

统计

  • GET /api/stats - 获取用量统计

MCP 代理

  • ALL /mcp/:slug - 访问部署的 MCP Server

定价方案

| 功能 | 免费版 | Pro版 | |------|--------|-------| | MCP Server 数量 | 3 | 无限 | | 月调用次数 | 1000 | 无限 | | 统计 | 基础 | 高级 | | 价格 | ¥0 | $9/月 |

部署到生产环境

Vercel 部署

  1. 安装 Vercel CLI:
npm i -g vercel
  1. 部署:
vercel

环境变量

JWT_SECRET=your-secret-key
PORT=3000

贡献

欢迎提交 Issue 和 Pull Request!

许可证

MIT