A middleware to provide an openAI compatible endpoint that can call MCP tools
Description:
A middleware providing OpenAI-compatible endpoints for MCP tool integration
Category: Integration Tools / API Bridge
Overview: MCP-Bridge enables seamless integration between OpenAI API and MCP tools, allowing developers to use any OpenAI-compatible client with MCP tools. Key capabilities include:
Installation Options:
git clone [repository]
# Edit compose.yml
docker-compose up --build -d
python3 -m venv .venv
source .venv/activate
pip install -r requirements.txt
Configuration Example:
{
"inference_server": {
"base_url": "http://localhost:8000/v1",
"api_key": "None"
},
"mcp_servers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
},
"network": {
"host": "0.0.0.0",
"port": 9090
}
}
Key Features:
Licensed under MIT License