Skip to content

eser/webmcp.land

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5,267 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

The AI-enabled Service Registry of MCP & WebMCP resources
Discover, register, and connect MCP services for any task. Free and open source.

Website Ask DeepWiki

Browse Registry · Register a Service · Self-Host


What is this?

webmcp.land is a discovery platform for MCP (Model Context Protocol) and WebMCP services. Organizations and developers register their MCP/WebMCP endpoints, and the platform discovers their tools, methods, and capabilities — making them searchable by use case.

It is forked from @f's prompts.chat and pivoted for MCP resources, building on top of that foundation.

Example: An airline registers their WebMCP endpoint. When a user searches for "reserving a flight ticket", webmcp.land surfaces the airline's booking tools and capabilities.

How it works

  1. Register your MCP or WebMCP service endpoint
  2. Discover — the platform fetches your server's capabilities and tools
  3. Search — users find your service by describing what they want to do
  4. Connect — users integrate your service into their AI workflows

Self-Hosting

Deploy your own private MCP service registry with custom branding, themes, and authentication.

Quick Start:

npx webmcp.land new my-registry
cd my-registry

Manual Setup:

git clone https://github.com/eser/webmcp.land.git
cd webmcp.land
pnpm install && pnpm run setup

After setup, push the database schema and seed with demo data:

pnpm run db:push        # Create tables
pnpm run db:seed         # Seed with demo data (50 sample resources)
pnpm run dev             # Start dev server at localhost:3000

Default admin credentials: admin@webmcp.land / password123

The setup wizard configures branding, theme, authentication (GitHub/Google/Azure AD), and features.

Full Self-Hosting Guide | Docker Guide


Integrations

CLI

npx webmcp.land

Claude Code Plugin

/plugin marketplace add eser/webmcp.land
/plugin install webmcp.land@webmcp.land

Plugin Documentation

MCP Server

Use webmcp.land as an MCP server in your AI tools.

Remote (recommended):

{
  "mcpServers": {
    "webmcp.land": {
      "url": "https://webmcp.land/api/mcp"
    }
  }
}

Local:

{
  "mcpServers": {
    "webmcp.land": {
      "command": "npx",
      "args": ["-y", "webmcp.land", "mcp"]
    }
  }
}

MCP Documentation


Tech Stack

  • Framework: vinext (Vite-based App Router) + React 19
  • Database: PostgreSQL + Drizzle ORM
  • Auth: Better Auth
  • Styling: Tailwind CSS v4 + shadcn/ui
  • Language: TypeScript
  • i18n: 17 languages via i18next

Contributors


License

Apache License 2.0 — Free to use, modify, and share with proper attribution. See LICENSE for details.

About

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 96.3%
  • JavaScript 2.0%
  • Other 1.7%