- Home
- MCP servers
- MCP All
MCP All
- javascript
1
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
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
-
Install Node.js and npm on your system if you have not already.
-
Start the MCP client with the provided command from the configuration sample. This runs the MCP server client as a local process via stdio.
-
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.