What is the io.github.Antonytm/mcp-all MCP server?
A Model Context Protocol server to run other MCP servers
How to install io.github.Antonytm/mcp-all
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
TRANSPORT
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-all": {
"command": "npx",
"args": [
"-y",
"@antonytm/mcp-all"
],
"env": {
"TRANSPORT": "<YOUR_TRANSPORT>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-all": {
"command": "npx",
"args": [
"-y",
"@antonytm/mcp-all"
],
"env": {
"TRANSPORT": "<YOUR_TRANSPORT>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-all": {
"command": "npx",
"args": [
"-y",
"@antonytm/mcp-all"
],
"env": {
"TRANSPORT": "<YOUR_TRANSPORT>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-all": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@antonytm/mcp-all"
],
"env": {
"TRANSPORT": "<YOUR_TRANSPORT>"
}
}
}
}Claude Code
claude mcp add mcp-all --env TRANSPORT=<YOUR_TRANSPORT> -- npx -y @antonytm/mcp-allRelated MCP servers
io.github.Antonytm/mcp-sitecore-server
Maintained
A Model Context Protocol server for Sitecore
47
View repository →TypeScript
Apache-2.0