MCP Bridge API
A lightweight, LLM-agnostic RESTful proxy that unifies multiple MCP servers under a single API.
MCP Bridge API
A Lightweight, LLM-Agnostic RESTful Proxy for Model Context Protocol Servers
Figure: The React Native MCP Agent interface showing the chat screen with tool execution results (left) and the settings screen with MCP Bridge connection status and Gemini API configuration (right)
Authors:
Arash Ahmadi, Sarah S. Sharif, and Yaser M. Banad*
School of Electrical, and Computer Engineering, University of Oklahoma, Oklahoma, United States
*Corresponding author: bana@ou.edu
If you want to reference this research project in your work, please cite our paper:
@article{ahmadi2025mcp,
title={MCP Bridge: A Lightweight, LLM-Agnostic RESTful Proxy for Model Context Protocol Servers},
author={Ahmadi, Arash and Sharif, Sarah and Banad, Yaser M},
journal={arXiv preprint arXiv:2504.08999},
year={2025}
}
π Table of Contents
- π Introduction
- ποΈ Architecture
- πΎ Installation
- π Python MCP-Gemini Agent
- π± React Native MCP Agent
- βοΈ Configuration
- π§ͺ API Usage
- π Risk Levels
- π Community Impact and Recognition
- π Changelog
- π§ Deployment Considerations
- π Comparison with Other MCP Bridge/Proxy Repositories
- π License
π Introduction
MCP Bridge is a lightweight, fast, and LLM-agnostic proxy that connects to multiple Model Context Protocol (MCP) servers and exposes their capabilities through a unified REST API. It enables any client on any platform to leverage MCP functionality without process execution constraints. Unlike Anthropic's official MCP SDK, MCP Bridge is fully independent and designed to work with any LLM backend which makes it adaptable, modular, and future-proof for diverse deployments. With optional risk-based execution levels, it provides granular security controlsβfrom standard execution to confirmation workflows and Docker isolationβwhile maintaining backward compatibility with standard MCP clients.
Complementing this server-side infrastructure are two distinct intelligent client implementations:
- Python MCP-Gemini Agent - A command-line Python client for desktop environments
- React Native MCP Agent - A modern cross-platform mobile application
Both clients enable natural language interaction with MCP tools through intelligent LLM-powered interfaces that feature multi-step reasoning for complex operations, security confirmation workflow handling, and configurable display options for enhanced usability. Together, MCP Bridge's versatile server-side capabilities and these intelligent client interfaces create a powerful ecosystem for developing sophisticated LLM-powered applications.
β οΈ The Problem
- Many MCP servers use STDIO transports requiring local process execution
- Edge devices, mobile devices, web browsers, and other platforms cannot efficiently run npm or Python MCP servers
- Direct MCP server connections are impractical in resource-constrained environments
- Multiple isolated clients connecting to the same servers causes redundancy and increases resource usage
- Interacting directly with MCP tools requires technical knowledge of specific tool formats and requirements
ποΈ Architecture
βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ
β React Native β β Python β β Other Clients β
β MCP Agent β β Gemini Agent β β β
ββββββββββ¬βββββββββ ββββββββββ¬βββββββββ ββββββββββ¬βββββββββ
β β β
β β β
β βΌ β
β βββββββββββββββββββββββββ β
ββββββββββββΊβ ββββββββββββ
β REST API β
β β
βββββββββββββ¬ββββββββββββ
β
βΌ
βββββββββββββββββββββββββ
β β
β MCP Bridge β
β β
βββββββββββββ¬ββββββββββββ
β
βββββββββββββββββΌββββββββββββββββ
β β β
βΌ βΌ βΌ
βββββββββββββββ βββββββββββββββ βββββββββββββββ
β MCP Server β β MCP Server β β MCP Server β
β (STDIO) β β (STDIO) β β (SSE) β
βββββββββββββββ βββββββββββββββ βββββββββββββββ
πΎ Installation
π¦ Prerequisites
- Node.js 18+ for MCP Bridge
- Python 3.8+ for the Python MCP-Gemini Agent
- React Native development environment for the mobile app
π Quick Setup
MCP Bridge
# Install dependencies
npm install express cors morgan uuid
# Start the server
node mcp-bridge.js
Python MCP-Gemini Agent
# Install dependencies
pip install google-generativeai requests rich
# Start the agent
python llm_test.py
React Native MCP Agent
# Navigate to the React Native app directory
cd reactnative-gamini-mcp-agent
# Install dependencies
npm install
# Start the development server
npx expo start
π Python MCP-Gemini Agent
The Python MCP-Gemini Agent is a command-line client that connects to MCP Bridge and uses Google's Gemini LLM to process user requests and execute MCP tools commands. It's designed for desktop environments and developer workflows.
Key Features
- Multi-step reasoning - Supports sequenced tool calls for complex operations
- Security confirmation flow - Integrated handling for medium and high risk operations
- Flexible JSON display - Control the verbosity of JSON outputs for better readability
- Configurable connection - Connect to any MCP Bridge instance with custom URL and port
- Discovery of available tools - Automatically detects and uses all tools from connected servers
Python Agent Configuration
The Python MCP-Gemini Agent supports several command-line options:
usage: llm_test.py [-h] [--hide-json] [--json-width JSON_WIDTH] [--mcp-url MCP_URL] [--mcp-port MCP_PORT]
MCP-Gemini Agent with configurable settings
options:
-h, --help show this help message and exit
--hide-json Hide JSON results from tool executions
--json-width JSON_WIDTH
Maximum width for JSON output (default: 100)
--mcp-url MCP_URL MCP Bridge URL including protocol and port (default: http://localhost:3000)
--mcp-port MCP_PORT Override port in MCP Bridge URL (default: use port from --mcp-url)
Python Agent Usage Examples
# Basic usage with default settings
python llm_test.py
# Hide JSON results for cleaner output
python llm_test.py --hide-json
# Connect to a custom MCP Bridge server
python llm_test.py --mcp-url http://192.168.1.100:3000
# Connect to a different port
python llm_test.py --mcp-port 4000
# Adjust JSON width display for better formatting
python llm_test.py --json-width 120
π± React Native MCP Agent
The React Native MCP Agent is a modern, cross-platform mobile application that provides intuitive access to MCP tools through a clean, user-friendly interface. Built with Expo and React Native Paper, it offers a dark-themed, Material Design 3 interface optimized for both iOS and Android platforms.
Key Features
- Cross-Platform Compatibility: Runs on iOS, Android, and web platforms
- Intuitive Chat Interface: Natural language interaction with segmented message display
- Real-Time Tool Execution: Visual feedback for MCP tool calls with collapsible result sections
- Conversation Management: Persistent conversation history with AI-generated titles
- Modern UI/UX: Dark theme with glassmorphism effects and smooth animations
- Comprehensive Settings: Easy configuration of MCP Bridge connections and Gemini API settings
- Security Integration: Built-in support for MCP Bridge's risk-level confirmation workflows
- Multi-Model Support: Compatible with various Gemini models including the latest 2.5 Flash Preview
Getting Started with the React Native app
- Configure MCP Bridge: Set up your MCP Bridge server URL in the Settings tab
- Add Gemini API Key: Enter your Google Gemini API key for AI functionality
- Select Model: Choose from available Gemini models including the latest releases
- Start Chatting: Begin natural language conversations with your MCP tools
The app automatically discovers available MCP tools and provides contextual assistance for complex multi-step operations.
βοΈ Configuration
MCP Bridge Configuration
MCP Bridge is configured through a JSON file named mcp_config.json
in the project root. This is an example of a basic MCP config:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/directory"],
"riskLevel": 2
},
"slack": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "your-slack-token",
"SLACK_TEAM_ID": "your-team-id"
},
"riskLevel": 1
}
}
}
π§ͺ API Usage
MCP Bridge exposes a clean and intuitive REST API for interacting with connected servers. Here's a breakdown of available endpoints:
π General Endpoints
Endpoint | Method | Description |
---|---|---|
/servers | GET | List all connected MCP servers |
/servers | POST | Start a new MCP server |
/servers/{serverId} | DELETE | Stop and remove an MCP server |
/health | GET | Get health status of the MCP Bridge |
/confirmations/{confirmationId} | POST | Confirm execution of a medium risk level request |
π Server-Specific Endpoints
Endpoint | Method | Description |
---|---|---|
/servers/{serverId}/tools | GET | List all tools for a specific server |
/servers/{serverId}/tools/{toolName} | POST | Execute a specific tool |
/servers/{serverId}/resources | GET | List all resources |
/servers/{serverId}/resources/{resourceUri} | GET | Retrieve specific resource content |
/servers/{serverId}/prompts | GET | List all prompts |
/servers/{serverId}/prompts/{promptName} | POST | Execute a prompt with arguments |
π§ͺ Example Requests
π Read Directory (Filesystem)
POST /servers/filesystem/tools/list_directory
Content-Type: application/json
{
"path": "."
}
π§ͺ Client Features
Python Agent Features
The Python MCP-Gemini Agent provides:
- Multi-step reasoning - Supports sequenced tool calls for complex operations
- Security confirmation flow - Integrated handling for medium and high risk operations
- Flexible JSON display - Control the verbosity of JSON outputs for better readability
- Configurable connection - Connect to any MCP Bridge instance with custom URL and port
- Discovery of available tools - Automatically detects and uses all tools from connected servers
React Native Agent Features
The React Native MCP Agent provides:
- Conversation Management - Persistent chat history with AI-generated titles
- Segmented Message Display - Clean separation of text responses and tool operations
- Real-time Tool Execution - Visual feedback with collapsible result sections
- Security Confirmation UI - Native confirmation dialogs for medium/high risk operations
- Multi-Model Support - Support for various Gemini models with easy switching
- Cross-Platform - Works on iOS, Android, and web platforms
- Modern Material Design - Dark theme with smooth animations and haptic feedback
π Risk Levels
MCP Bridge implements an optional risk level system that provides control over server execution behaviors. Risk levels help manage security and resource concerns when executing potentially sensitive MCP server operations.
Risk Level Classification
Level | Name | Description | Behavior |
---|---|---|---|
1 | Low | Standard execution | Direct execution without confirmation |
2 | Medium | Requires confirmation | Client must confirm execution before processing |
3 | High | Docker execution required | Server runs in isolated Docker container |
Configuring Risk Levels
Risk levels are optional for backward compatibility. You can configure risk levels in your mcp_config.json
:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/directory"],
"riskLevel": 2
},
"slack": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "your-slack-token",
"SLACK_TEAM_ID": "your-team-id"
},
"riskLevel": 1
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_TOKEN": "your-github-token"
},
"riskLevel": 3,
"docker": {
"image": "node:18",
"volumes": ["/tmp:/tmp"],
"network": "host"
}
}
}
}
Risk Level Workflows
Low Risk (Level 1)
- Standard execution without additional steps
- Suitable for operations with minimal security concerns
- This is the default behavior when no risk level is specified
Medium Risk (Level 2)
- Client makes a tool execution request
- Server responds with a confirmation request containing a confirmation ID
- Client must make a separate confirmation request to proceed
- Only after confirmation does the server execute the operation
Both the Python MCP-Gemini Agent and React Native Agent handle this confirmation flow automatically, prompting the user for approval when needed.
High Risk (Level 3)
- Server automatically runs in an isolated Docker container
- Provides environmental isolation for the MCP server process
- Requires Docker to be installed and properly configured
π Changelog
Latest Updates
-
β UV Package Manager Support: Fixed the issue with loading UV-based (Python) MCP servers. MCP Bridge now properly initializes and communicates with Python MCP servers that use the UV package manager, resolving previous compatibility issues with UV-based toolchains.
-
π± React Native MCP Agent: Added a comprehensive mobile application with:
- Cross-platform support for iOS, Android, and web
- Modern Material Design 3 interface with dark theming
- Intelligent conversation management with AI-generated titles
- Real-time tool execution with visual feedback
- Built-in security confirmation workflows
- Support for multiple Gemini models including latest releases
-
π§ Enhanced Tool Execution: Improved multi-step reasoning capabilities across all clients
-
π‘οΈ Security Improvements: Enhanced risk-level confirmation flows with better user experience
-
π Better Error Handling: More robust error handling and recovery mechanisms
π Community Impact and Recognition
MCP Bridge has gained recognition within the AI and development communities, being featured in academic research, industry security analyses, professional discourse, and technical publications. These acknowledgments highlight the practical value and real-world impact of our lightweight, LLM-agnostic proxy solution.
Cited by this paper: From Prompt Injections to Protocol Exploits: Threats in LLM-Powered AI Agents Workflows - A research paper discussing security implications in LLM-powered AI agent workflows
Research Briefing: MCP Security - Wiz security research highlighting MCP Bridge as an example of academic work in the MCP ecosystem
LinkedIn Post by Vaibhava Lakshmi Ravideshik - A LinkedIn Learning Instructor discussion about MCP Bridge's practical applications
Unlocking Agentic Apps with the Model Context Protocol (MCP) For Financial Services - Medium article featuring MCP Bridge's design pattern for financial applications
π§ Deployment Considerations
π Security
- Use HTTPS in production
- Add auth for sensitive operations
- Network-isolate critical services
π Scaling
- Use load balancers
- Pool high-demand servers
- Track metrics and resource pressure
π± Mobile Deployment
For the React Native app:
- Build for production using
npx expo build
- Configure app store deployment with EAS Build
- Set up over-the-air updates with EAS Update
π Comparison with Other MCP Bridge/Proxy Repositories
Feature | ivanboring/mcp-rest | INQUIRELAB/mcp-bridge-api (This Repo) | SecretiveShell/MCP-Bridge | JoshuaRileyDev/mcp-api | rakesh-eltropy/mcp-client | bartolli/mcp-llm-bridge |
---|---|---|---|---|---|---|
βοΈ Primary Language | Node.js | Node.js (Bridge) + Python (Agent) β¨ | Python | Node.js | Python | Python |
π― Main Purpose | Simple REST wrapper | LLM-Agnostic REST Bridge + Gemini Agent | Feature-rich OpenAI & REST Bridge + MCP Server | REST API for MCP Servers + Chat UI Example | LangChain Agent w/ MCP Tools (REST/CLI) | MCP <-> LLM Bridge (OpenAI compatible) |
π MCP Connection | SSE only | STDIO (Managed) + Docker (Risk-based) βοΈ | STDIO, SSE, Docker | STDIO | STDIO (LangChain) | STDIO |
π API Interface | Basic REST | Unified REST API βοΈ | OpenAI compatible, REST, MCP Server (SSE) | REST API + Swagger | REST API (Streaming), CLI | Interactive CLI |
β¨ Key Features | Basic tool list/call | Multi-server, Risk Levels, Security Confirm, Docker Exec, Gemini Agent, Config Flexibility β¨ | OpenAI compat., Sampling, Multi-transport, Auth, Docker/Helm, Flexible Config | Multi-server, Tool Name Norm., Swagger, Chat UI | LangChain Integration, REST/CLI, Streaming | Bidirectional Protocol Translation, DB Tool |
π§ Configuration | CLI args | JSON file + Env Vars βοΈ | JSON file, HTTP URL, Env Vars | JSON file (multi-path search), Env Vars | JSON file | Python Object, Env Vars |
π§© LLM Integration | None | Yes (Dedicated Gemini Agent w/ Multi-Step Reasoning) β¨ | Yes (OpenAI endpoint) | None (API only) | Yes (LangChain) | Yes (OpenAI client) |
ποΈ Complexity | Low | Low βοΈ | High | Moderate | Moderate-High | Moderate |
π‘οΈ Security Features | None | Risk Levels (Medium/High) + Confirmation Flow + Docker Isolation β¨ | Basic Auth (API Keys), CORS | None | None | None |
π¦ Key Dependencies | express , mcp-client | express , uuid (Bridge, minimum dependency); requests , google-genai , rich (Agent) | fastapi , mcp , mcpx | express , @mcp/sdk , socket.io | fastapi , ` |
Related Servers
Synth MCP
Access financial data like stock prices, currency info, and insider trading data using the Synth Finance API.
ShaderToy-MCP
Query and interact with ShaderToy shaders using large language models.
MCP Bridge API
A lightweight, LLM-agnostic RESTful proxy that unifies multiple MCP servers under a single API.
MCP LSP Go
An MCP server that connects AI assistants to Go's Language Server Protocol (LSP) for advanced code analysis.
Everything MCP Server
A test server that demonstrates all features of the MCP protocol, including prompts, tools, resources, and sampling.
DIY MCP
A from-scratch implementation of the Model Context Protocol (MCP) for building servers and clients, using a Chinese tea collection as an example.
HeyBeauty
Perform virtual try-ons using the HeyBeauty API.
Remote MCP Server on Cloudflare
A template for deploying a remote MCP server on Cloudflare Workers, customizable by defining tools in the source code.
Random Number
Provides LLMs with essential random generation abilities, built entirely on Python's standard library.
Configurable Command MCP Server
A flexible MCP server that executes arbitrary command-line tools defined in a configuration file.