Integrates with Buildkite CI/CD platform through environment variable token configuration
Enables launching and managing Docker containers as backend MCP servers, allowing containerized tool execution and isolation
Supports environment variable substitution in backend configurations through .env files
Provides access to GitHub functionality, including creating issues and interacting with repositories, through the GitHub MCP Server
Provides access to Redis database functionality through a configured MCP server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcpwarelist all available tools from my connected backends"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Gateway MCP Server
Route MCP requests intelligently to multiple backend servers.
๐ฏ Key Features
๐ Bypass Tool Limits
Challenge: MCP clients often have limits on how many tools can be loaded at once
Solution: mcpware exposes only 2 routing tools while providing access to unlimited backend tools
Result: Connect to GitHub (50+ tools), databases, and more through a single gateway!
๐ง Additional Benefits
Single entry point for multiple MCP servers
Automatic process management for backend servers
Docker-based isolation and deployment
Related MCP server: Google Maps MCP Server
Quick Start
# Clone the repository
git clone https://github.com/delexw/mcpware.git
cd mcpware
# Build the Docker image
docker build -t mcpware . --no-cache
# Configure MCP client (see Installation section)Then configure MCP Clients as shown in the Installation section.
How it Works
mcpware runs as a Docker container that:
Receives requests from MCP clients via stdio
Routes them to the appropriate backend MCP server (also running in Docker)
Returns responses back to MCP client
Important: Backend servers can use any command (docker, npx, node, python, etc.). When running mcpware in Docker, backends using local commands like npx or node will execute inside the mcpware container.
Installation
Prerequisites
Docker
MCP Clients (Cursor etc..)
Setup with MCP Client
Clone this repository:
git clone https://github.com/delexw/mcpware.git cd mcpwareConfigure your backends in
config.json(see Configuration section below)Set up your environment variables:
Copy the example file:
cp env.example .envEdit
.envwith your actual values:GITHUB_PERSONAL_ACCESS_TOKEN=your_github_token_here BUILDKITE_API_TOKEN=your_buildkite_token_here # Add other environment variables as needed
Add to MCP client configuration:
Note: You can configure the secrets or tokens directly into mcpware
config.jsonConfiguration (Direct Docker Run):
{ "mcpServers": { "mcpware": { "command": "docker", "args": [ "run", "-i", "--rm", "-v", "/path/to/mcpware/config.json:/app/config.json:ro", "-v", "/var/run/docker.sock:/var/run/docker.sock", "--env-file", "/path/to/mcpware/.env", "mcpware" ] } } }Important:
Replace
/path/to/mcpwarewith the absolute path to your cloned repositoryThe Docker socket mount (
/var/run/docker.sock) is required for mcpware to launch Docker-based backends, otherwise you don't need to
Why mount the Docker socket?
mcpware needs to launch Docker containers for backend MCP servers (like
ghcr.io/github/github-mcp-server)The Docker socket mount allows mcpware to communicate with Docker
Without this mount, mcpware cannot start backend servers that run as Docker containers
Platform-Specific Docker Socket Configuration
The gateway needs access to the Docker socket to launch backend containers. The mount path differs by platform:
Why is Docker socket access required?
mcpware acts as a process manager that launches backend MCP servers. When a backend is configured to run as a Docker container (e.g., ghcr.io/github/github-mcp-server), mcpware needs to:
Create and start Docker containers
Manage their lifecycle (stop/restart)
Communicate with them via stdio
Without Docker socket access, mcpware cannot launch Docker-based backends and will fail with permission errors.
Quick Check
Run this script to check your Docker configuration:
python scripts/check_docker_socket.pyLinux/macOS/WSL2
No changes needed. The default configuration works:
volumes:
- /var/run/docker.sock:/var/run/docker.sockWindows (Native Containers)
Update the Docker socket path:
{
"mcpServers": {
"mcpware": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"/path/to/mcpware/config.json:/app/config.json:ro",
"-v",
"//./pipe/docker_engine://./pipe/docker_engine",
"--env-file",
"/path/to/mcpware/.env",
"mcpware"
]
}
}
}Note the different Docker socket path: //./pipe/docker_engine instead of /var/run/docker.sock
Check Your Docker Type
To verify which Docker backend you're using on Windows:
docker version --format '{{.Server.Os}}'linux= WSL2/Hyper-V backend (use default config)windows= Windows containers (use override file)
Configuration
Create a config.json with your backend servers:
{
"backends": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
},
"description": "GitHub MCP Server",
"timeout": 60
},
"database": {
"command": "docker",
"args": ["run", "-i", "--rm", "bytebase/dbhub", "--transport", "stdio"],
"description": "Database MCP Server"
}
}
}Configuration Notes:
Backend commands can be any executable (
docker,npx,node,python, etc.)When using
dockercommands, ensure Docker socket is mounted (see installation instructions)
See config.example.json for more backend examples (databases, APIs, etc.).
Usage
The gateway exposes two main tools:
use_tool
Routes a tool call to a specific backend server.
Parameters:
backend_server: Name of the backend serverserver_tool: Name of the tool to calltool_arguments: Arguments to pass to the tool
Example:
{
"backend_server": "github",
"server_tool": "create_issue",
"tool_arguments": {
"owner": "myorg",
"repo": "myrepo",
"title": "New issue",
"body": "Issue description"
}
}discover_backend_tools
Discovers available backends and their tools.
Parameters:
backend_name: (Optional) Specific backend to query
Using mcpware Alongside Other MCP Servers
mcpware is designed to work alongside other MCP servers in your MCP client configuration. You can:
Use mcpware as a gateway for multiple backend servers
Keep some MCP servers separate for direct access
Mix and match based on your needs
Example mixed configuration:
{
"mcpServers": {
"mcpware": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-v", "/path/to/mcpware/config.json:/app/config.json:ro",
"-v", "/var/run/docker.sock:/var/run/docker.sock",
"--env-file", "/path/to/mcpware/.env",
"mcpware"
]
},
"redis-direct": {
"command": "docker",
"args": ["run", "--rm", "-i", "-e", "REDIS_HOST=localhost", "mcp/redis"]
}
}
}This allows you to:
Access multiple servers through mcpware when you need routing
Connect directly to specific servers when you need dedicated access
Organize your MCP servers based on your workflow
Development
Prerequisites
Ensure you have Python 3.10+ installed:
python --version # Should show Python 3.10 or higherDevelopment Setup
Clone the repository:
git clone https://github.com/delexw/mcpware.git cd mcpwareCreate a virtual environment (recommended):
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activateInstall development dependencies:
pip install -r requirements.txt
Development Dependencies
The project uses minimal dependencies. All core functionality is implemented using the Python standard library.
Testing dependencies (included in requirements.txt):
pytest- Testing frameworkpytest-asyncio- Async test supportpytest-cov- Code coverage reporting
Optional development tools (install separately if needed):
# Code formatting
pip install black isort
# Linting
pip install flake8 pylint mypy
# Development convenience
pip install pytest-watch # Auto-run tests on file changesRunning Locally
# Run the gateway server
python gateway_server.py --config config.json
# Run with debug logging
python gateway_server.py --config config.json --log-level DEBUGCode Style
Format your code before committing:
# Format with black (if installed)
black src/ tests/ gateway_server.py
# Sort imports (if installed)
isort src/ tests/ gateway_server.py
# Run linting (if installed)
flake8 src/ tests/ gateway_server.py --max-line-length=120Running Tests
# Run all tests
pytest
# Run with coverage report
pytest --cov=src --cov=gateway_server --cov-report=html
# Run specific test file
pytest tests/test_config.py
# Run tests in watch mode (requires pytest-watch)
pytest-watchDocker
Build and run with Docker:
# Build the image
docker build -t mcpware .
# Run interactively (for testing)
docker run -it --rm \
-v $(pwd)/config.json:/app/config.json:ro \
-v /var/run/docker.sock:/var/run/docker.sock \
-e GITHUB_PERSONAL_ACCESS_TOKEN \
mcpware
# Run with specific config file
docker run -it --rm \
-v /path/to/your/config.json:/app/config.json:ro \
-v /var/run/docker.sock:/var/run/docker.sock \
-e GITHUB_PERSONAL_ACCESS_TOKEN \
mcpwareEnvironment Variables
The gateway supports environment variable substitution in backend configurations. Set these in your .env file:
# Example .env file
GITHUB_PERSONAL_ACCESS_TOKEN=ghp_xxxxxxxxxxxxx
ANTHROPIC_API_KEY=sk-ant-xxxxxxxxxxxxx
# Add other tokens as neededEnvironment variables referenced in config.json using ${VAR_NAME} syntax will be automatically substituted.
Testing
The project includes comprehensive unit and integration tests.
Running Tests
Install test dependencies:
pip install -r requirements.txtRun all tests:
pytestRun tests with coverage:
pytest --cov=src --cov=gateway_server --cov-report=htmlRun specific test modules:
pytest tests/test_config.py pytest tests/test_backend.py pytest tests/test_protocol.pyRun tests in watch mode:
pytest-watch
License
MIT
This server cannot be installed
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.