Loading...
{
"mcpServers": {
"job-multiverse": {
"command": "npx",
"args": [
"-y",
"@lamemind/mcp-server-multiverse@latest",
"/path/to/your/job-multiverse.json"
]
},
"side-project-multiverse": {
"command": "npx",
"args": [
"-y",
"@lamemind/mcp-server-multiverse@latest",
"/path/to/your/side-project-multiverse.json"
]
}
}
}npxExecutes npm package binaries, used to start the underlying MCP servers.
Can execute arbitrary code if the package is malicious or vulnerable.
fileWatchMonitors file changes and restarts the server, useful for development.
If configured improperly, may cause excessive restarts or expose sensitive files.
pathResolutionMaps paths to hide the root path from the client.
Only affects the paths exposed to the client, not the actual filesystem access.
The Multiverse MCP Server provides a layer of isolation and configuration management, improving safety compared to running multiple servers directly. However, the security of the underlying MCP servers and the configuration of the Multiverse server itself are crucial. It is safe when properly configured with restricted access and careful monitoring, but risky if misconfigured or used with inherently unsafe MCP servers.