MCP List

v1.0.0

Comprehensive MCP server directory and aggregator

mcpaggregatordirectoryapi

Server Information

Server ID
mcplist
Endpoint URL
https://mcplist.bookchaowalit.com
Author
bookchaowalit
Available Tools
3 tools

About

A comprehensive directory and documentation hub for Model Context Protocol (MCP) servers. This website serves both as a documentation site and as an MCP server aggregator that can proxy requests to other MCP servers. ## Features - **Directory of MCP Servers**: Browse and discover MCP servers with detailed documentation - **Server Documentation**: Individual pages for each MCP server with tool descriptions and usage examples - **MCP Server API**: Built-in MCP server endpoint that can list all available MCP servers and proxy tool calls to other MCP servers - **Modern UI**: Clean, responsive design built with Next.js and Tailwind CSS - **Dark Mode Support**: Automatic dark mode based on system preferences

Available Tools

mcplist_list_servers

List all registered MCP servers

Input Schema
{
  "type": "object",
  "properties": {
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}

mcplist_get_server

Get detailed information about a specific server

Input Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    }
  }
}

mcplist_proxy_tool_call

Proxy a tool call to another MCP server

Input Schema
{
  "type": "object",
  "properties": {
    "serverId": {
      "type": "string"
    },
    "toolName": {
      "type": "string"
    },
    "arguments": {
      "type": "object"
    }
  }
}

Usage Example

Connect to this MCP server using the Model Context Protocol:

{
  "mcpServers": {
    "mcplist": {
      "command": "node",
      "args": ["path/to/server.js"],
      "env": {
        "SERVER_URL": "https://mcplist.bookchaowalit.com"
      }
    }
  }
}