@ranbirsingh97051/mcp-master-server
v1.0.2
Published
Master MCP bridge for Ominiway proxy
Readme
@ranbirsingh97051/mcp-master-server
The official Master MCP bridge for the Ominiway proxy layer.
🚀 Overview
Ominiway acts as a centralized hub for your Model Context Protocol (MCP) servers. This bridge allows your local AI clients (like Claude Desktop or Cursor) to communicate with your Ominiway backend, aggregate all your tools, and enforce guardrails.
📦 Installation
You don't need to install this package manually. You can run it directly using npx.
1. Claude Desktop Setup
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"ominiway": {
"command": "npx",
"args": [
"-y",
"@ranbirsingh97051/mcp-master-server"
],
"env": {
"OMINIWAY_URL": "YOUR_OMINIWAY_URL",
"OMINIWAY_API_TOKEN": "YOUR_API_TOKEN"
}
}
}
}2. Manual CLI Usage
export OMINIWAY_URL="https://your-ominiway-server.com"
export OMINIWAY_API_TOKEN="your-api-token"
npx @ominiway/mcp-master-server🔐 Security
This bridge authenticates with your Ominiway server using an API Token. It does not handle your original service credentials (GitHub PATs, Slack tokens, etc.) directly—those remain securely in the Ominiway vault.
🛠️ Development
To build from source:
npm installnpm run buildnpm start
