.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/secretiveshell/mcp-bridge
home/mcp-servers/secretiveshell/mcp-bridge
secretiveshell avatar

mcp-bridge

bysecretiveshell· 2 MCP servers

Installs

786

Stars

928

Forks

117

Category

AI Agents & MCP

View on GitHub

TL;DR

MCP-Bridge acts as a bridge between the OpenAI API and MCP (MCP) tools, allowing developers to leverage MCP tools through the OpenAI API interface.

How to install mcp-bridge?

secretiveshell/mcp-bridge
$git clone https://github.com/secretiveshell/mcp-bridge

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-bridge by running `git clone https://github.com/secretiveshell/mcp-bridge`, then use it for the current task and follow its documentation at https://github.com/secretiveshell/mcp-bridge.

Files · 1

View on GitHub
README.md
1# MCP-Bridge
2 
3<p>
4 <a href="https://discord.gg/4NVQHqNxSZ"><img alt="Discord" src="https://img.shields.io/discord/1320517159331430480?style=flat&logo=discord&color=blue"></a>
5 <a href="/docs/README.md"><img alt="Static Badge" src="https://img.shields.io/badge/docs-md-blue"></a>
6 <a href="LICENSE"><img alt="Static Badge" src="https://img.shields.io/badge/License-MIT-blue?style=flat"></a>
7</p>
8 
9 
10MCP-Bridge acts as a bridge between the OpenAI API and MCP (MCP) tools, allowing developers to leverage MCP tools through the OpenAI API interface.
11 
12> [!NOTE]
13>
14> Looking for new maintainers to assist with the project. Reach out in the Discord or open an issue if you are interested.
15>
16> Additionally, Open WebUI natively supports MCP (Model Context Protocol) starting in v0.6.31, so MCP-Bridge should be considered as soft deprecated now.
17 
18## Overview
19MCP-Bridge is designed to facilitate the integration of MCP tools with the OpenAI API. It provides a set of endpoints that can be used to interact with MCP tools in a way that is compatible with the OpenAI API. This allows you to use any client with any MCP tool without explicit support for MCP. For example, see this example of using Open Web UI with the official MCP fetch tool.
20 
21![open web ui example](/assets/owui_example.png)
22 
23## Current Features
24 
25working features:
26 
27- non streaming chat completions with MCP
28- streaming chat completions with MCP
29 
30- non streaming completions without MCP
31 
32- MCP tools
33- MCP sampling
34 
35- SSE Bridge for external clients
36 
37planned features:
38 
39- streaming completions are not implemented yet
40 
41- MCP resources are planned to be supported
42 
43## Installation
44 
45The recommended way to install MCP-Bridge is to use Docker. See the example compose.yml file for an example of how to set up docker.
46 
47Note that this requires an inference engine with tool call support. I have tested this with vLLM with success, though ollama should also be compatible.
48 
49### Docker installation
50 
511. **Clone the repository**
52 
532. **Edit the compose.yml file**
54 
55You will need to add a reference to the config.json file in the compose.yml file. Pick any of
56- add the config.json file to the same directory as the compose.yml file and use a volume mount (you will need to add the volume manually)
57- add a http url to the environment variables to download the config.json file from a url
58- add the config json directly as an environment variable
59 
60see below for an example of each option:
61```bash
62environment:
63 - MCP_BRIDGE__CONFIG__FILE=config.json # mount the config file for this to work
64 - MCP_BRIDGE__CONFIG__HTTP_URL=http://10.88.100.170:8888/config.json
65 - MCP_BRIDGE__CONFIG__JSON={"inference_server":{"base_url":"http://example.com/v1","api_key":"None"},"mcp_servers":{"fetch":{"command":"uvx","args":["mcp-server-fetch"]}}}
66```
67The mount point for using the config file would look like:
68```yaml
69 volumes:
70 - ./config.json:/mcp_bridge/config.json
71```
72 
733. **run the service**
74```
75docker-compose up --build -d
76```
77 
78### Manual installation (no docker)
79 
80If you want to run the application without docker, you will need to install the requirements and run the application manually.
81 
821. **Clone the repository**
83 
842. **Set up a dependencies:**
85```bash
86uv sync
87```
88 
893. **Create a config.json file in the root directory**
90 
91Here is an example config.json file:
92```json
93{
94 "inference_server": {
95 "base_url": "http://example.com/v1",
96 "api_key": "None"
97 },
98 "mcp_servers": {
99 "fetch": {
100 "command": "uvx",
101 "args": ["mcp-server-fetch"]
102 }
103 }
104}
105```
106 
1074. **Run the application:**
108```bash
109uv run mcp_bridge/main.py
110```
111 
112## Usage
113Once the application is running, you can interact with it using the OpenAI API.
114 
115View the documentation at [http://yourserver:8000/docs](http://localhost:8000/docs). There is an endpoint to list all the MCP tools available on the server, which you can use to test the application configuration.
116 
117## Rest API endpoints
118 
119MCP-Bridge exposes many rest api endpoints for inte

Preview

secretiveshell/mcp-bridgesecretiveshell/mcp-bridge
Reposecretiveshell/mcp-bridge
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedDec 2025
LicenseMIT
First seenJul 27, 2026

Tags

MCPaiclaude

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k