Sandbox
@nanbingxyz/mcpsvr

Directory of MCP servers for MCP clients

MCPSvr is a browsable registry for Model Context Protocol servers. It helps you review how a server runs, what arguments it needs, and where to find its documentation, then add or update entries through pull requests.

315 stars55 forksTypeScriptUpdated 2mo ago
Who it's for

Builders who want a shared place to discover and maintain MCP server entries for their clients.

What it delivers

You can find and reuse MCP servers without digging through scattered repos and setup notes.

What it does

Browse a shared server registry

Shows MCP servers from the curated `public/servers.json` list in a simple web directory.

Review runtime details

Displays each server’s command, arguments, environment variables, and homepage link.

Contribute new entries

Lets you add or update server metadata by editing `public/servers.json` and opening a pull request.

Support client-side installation

Keeps enough metadata for MCP clients to install and run supported servers directly.

Use placeholder arguments

Documents the `{{paramName@paramType::paramDescription}}` format for servers that need user input.

How to get it

  1. 1Run
    npm install

README

MCPSvr logo

MCPSvr

A community-driven directory for discovering, reviewing, and contributing MCP servers.

GitHub stars Last commit Next.js 15 Community directory

中文说明

MCPSvr is a lightweight web directory for Model Context Protocol servers. It helps developers browse available servers, understand how each one is configured, and contribute new entries through pull requests.

The repository centers on a curated public/servers.json registry, so MCP clients such as 5ire can install and run supported servers directly.

https://github.com/user-attachments/assets/3d1ec8db-2041-4f2d-b72c-eb8ae17ab31c

Table of Contents

Why MCPSvr

MCP servers are growing fast, but good discovery is still fragmented. MCPSvr gives the ecosystem a simple shared registry with enough metadata for humans to evaluate tools and for clients to automate setup.

What You Can Do

  • Discover MCP servers from a single browsable directory
  • Review runtime commands, arguments, environment variables, and homepage links
  • Contribute new servers or improve existing metadata via pull requests
  • Reuse the registry in MCP clients that support direct installation

Project Structure

.
├── app/                # Next.js app router pages
├── components/         # Reusable UI components
├── lib/                # Utility helpers
├── public/
│   ├── logo.png
│   └── servers.json    # Central MCP server registry
└── README_cn.md        # Chinese README

Run Locally

Prerequisites

  • Node.js 18+
  • npm (or another package manager compatible with package-lock.json)

Install

npm install

Start the development server

npm run dev

Then open http://localhost:3000.

Build for production

npm run build
npm run start

How to Add a Server

All registered MCP servers are maintained in public/servers.json. To contribute a new entry:

  1. Fork the repository
  2. Add or update a server object in public/servers.json
  3. Keep keys consistently ordered
  4. Open a pull request with links to the project homepage or docs

Server Schema

{
  "name": "Server Identifier",
  "key": "Unique alphanumeric identifier",
  "description": "Concise implementation overview",
  "command": "Execution environment specifier (for example uvx, npx, python, node)",
  "args": [
    "Required runtime arguments"
  ],
  "env": {
    "ENVIRONMENT_VARIABLE": "Value assignment"
  },
  "homepage": "Official documentation URL"
}

Field Guidelines

  • key must be unique, alphanumeric, and start with a letter
  • name is optional and falls back to key when omitted
  • env and homepage are optional but strongly recommended
  • Keep descriptions short and practical so clients can display them cleanly

Parameter Placeholders

When a server needs user-provided input, use the placeholder format below:

{{paramName@paramType::paramDescription}}

Example:

{
  "name": "File System Access Control",
  "key": "FileSystem",
  "command": "npx",
  "description": "Enforces directory-level operation restrictions through specified arguments",
  "args": [
    "-y",
    "@modelcontextprotocol/server-filesystem",
    "{{dirs@list::directories you are about to access, include trailing slash}}"
  ],
  "homepage": "https://github.com/modelcontextprotocol/servers"
}

Supported placeholder types include string, list, and number.

Contribution Notes

  • Prefer accurate metadata over marketing copy
  • Double-check command arguments before submitting
  • Include a homepage or docs link whenever possible
  • If you add a new field in the future, keep the schema backwards compatible for downstream clients

Files in the repo

Repository payload17 top-level entries
  • app
  • components
  • lib
  • public
  • .gitignore
  • .vscode-upload.json
  • components.json
  • eslint.config.mjs
  • next.config.ts
  • package-lock.json
  • package.json
  • pnpm-lock.yaml
  • postcss.config.mjs
  • README_cn.md
  • README.md
  • tailwind.config.ts
  • tsconfig.json

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More collections

The awesome collection of OpenClaw skills. 5,400+ skills filtered and categorized from the official OpenClaw Skills Registry.🦞

52k
phuryn/
pm-skills
phuryn/pm-skillsCollections

PM Skills Marketplace: 100+ agentic skills, commands, and plugins — from discovery to strategy, execution, launch, and growth.

26k

Extracted system prompts from Anthropic - Claude Fable 5.1, Opus 5, Claude Design, Claude Code. OpenAI - ChatGPT GPT-6-Astra, Codex. Google - Gemini 3.8 Flash, 3.1 Pro, Antigravity. xAI - Grok, Grok Bot, Cursor, Kimi and more! Updated regularly.

65k
1 add