home / mcp / mcp all mcp server
Provides a search-enabled MCP server to discover, configure, and manage MCP endpoints and their tools.
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.
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:
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:
{
"mcpServers": {
"Universal MCP Server": {
"command": "npx",
"args": ["-y", "@antonytm/mcp-all@latest"],
"transport": "stdio",
"environmentVariables": [
{
"name": "TRANSPORT",
"value": "stdio"
}
]
}
}
}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.
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.
- 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.
Shows the current MCP configuration and you can review which MCP servers are configured.
Searches for MCP servers using the MCP registry index to identify available endpoints.
Adds configuration for a discovered MCP server so your client can communicate with it.
Removes a configured MCP server from your MCP setup.
Refreshes the MCP index to ensure you have the latest information about available servers.