home / mcp / mcp all mcp server

MCP All MCP Server

Provides a search-enabled MCP server to discover, configure, and manage MCP endpoints and their tools.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "antonytm-mcp-all": {
      "command": "npx",
      "args": [
        "-y",
        "@antonytm/mcp-all@latest"
      ],
      "env": {
        "TRANSPORT": "stdio"
      }
    }
  }
}

You can search for MCP servers, add the ones you need to your configuration, and manage MCP connections with a flexible, knife‑sharp MCP front end. This server helps you locate MCP endpoints, connect to them, and dynamically extend your tooling by restarting to unlock new capabilities.

How to use

Begin by locating MCP servers that match your needs using the search capability. Once you identify a server, add its configuration to your setup so your client can communicate with it. After you restart the MCP server, you will gain access to new tools exposed by the connected MCP endpoints. Use the following typical workflow:

How to install

Prerequisites: ensure you have Node.js and npm installed on your machine. You can verify installations with these commands:

Check Node.js version:

Check npm version:

Install and run the MCP server client using the recommended command from the project’s MCP setup:

Sample configuration to enable MCP server access

{
  "mcpServers": {
    "Universal MCP Server": {
      "command": "npx",
      "args": ["-y", "@antonytm/mcp-all@latest"],
      "transport": "stdio",
      "environmentVariables": [
        {
          "name": "TRANSPORT",
          "value": "stdio"
        }
      ]
    }
  }
}

Operational steps to start and use the MCP server

1) Install Node.js and npm on your system if you have not already.

2) Start the MCP client with the provided command from the configuration sample. This runs the MCP server client as a local process via stdio.

3) After the MCP server restarts, you will see newly exposed tools become available to your agent. Use those tools to search for MCP servers, add them to your configuration, and refresh indices as needed.

Configuration and transport details

The MCP configuration supports stdio and streamable-http transports. In the included example, the stdio transport is used and the runtime command is npx with the MCP package specified.

Notes and further considerations

- You can search for MCP servers using the search tool and then add the chosen server with add_mcp_server. After you restart the MCP server, the new tools provided by that MCP endpoint will appear.

- The configuration sample demonstrates how to declare a server named Universal MCP Server with the npx command and the @antonytm/mcp-all@latest package. The TRANSPORT environment variable is set to stdio to align with the selected transport.

Available tools

mcp_configuration

Shows the current MCP configuration and you can review which MCP servers are configured.

search

Searches for MCP servers using the MCP registry index to identify available endpoints.

add_mcp_server

Adds configuration for a discovered MCP server so your client can communicate with it.

remove_mcp_server

Removes a configured MCP server from your MCP setup.

refresh_mcp_index

Refreshes the MCP index to ensure you have the latest information about available servers.