Skip to main content

A Multi-Client Proxy (MCP) for various LLMs with failover and flexible response formats.

Project description

Multi-Client Proxy (MCP) LLM Client

The Multi-Client Proxy (MCP) LLM Client is a robust and flexible Python library designed to streamline your interactions with various Large Language Models (LLMs). It provides a unified interface to popular LLMs like Google Gemini, OpenAI ChatGPT, and Perplexity AI, with a built-in failover mechanism based on your defined priority. Additionally, it offers a versatile "Custom LLM" client, allowing you to seamlessly integrate any other LLM, whether it's a locally deployed model or another third-party service, by simply providing its API endpoint and key.

This client is built with production-grade considerations in mind, emphasizing modularity, secure API key management via environment variables, and comprehensive error handling.

โœจ Features

  • Multi-LLM Support: Connects to Google Gemini, OpenAI ChatGPT, Perplexity AI, and any custom LLM.
  • Priority-Based Failover: Define a custom priority order for LLM providers. If a primary service fails or is unreachable, the client automatically attempts the next one in your list.
  • Streaming & Non-Streaming: All LLMs support both streaming (generator/chunks) and non-streaming (full response) modes, configurable globally or per-call.
  • Configurable Response Format: Request responses in plain text or structured JSON format, allowing for flexible integration into various applications.
  • Secure API Key Management: All sensitive API keys are loaded securely from environment variables, ensuring your credentials are not hardcoded.
  • Extensible Architecture: Designed with an abstract base class (LLMClient), making it easy to add support for new LLM providers in the future.
  • Production-Grade Code: Features modular design, comprehensive error handling, and informative logging for better maintainability and debugging.
  • Custom LLM Integration: A generic client to interact with any LLM that exposes an HTTP API, perfect for local models or less common third-party services.

๐Ÿ“ Folder Structure

The project is organized into a clear and logical folder structure:

.
โ”œโ”€โ”€ README.md
โ”œโ”€โ”€ examples/
โ”‚ โ””โ”€โ”€ run_client.py
โ”œโ”€โ”€ mcp_client/
โ”‚ โ”œโ”€โ”€ clients/
โ”‚ โ”‚ โ”œโ”€โ”€ __init__.py
โ”‚ โ”‚ โ”œโ”€โ”€ gemini_client.py # Google Gemini client implementation
โ”‚ โ”‚ โ”œโ”€โ”€ chatgpt_client.py # OpenAI ChatGPT client implementation
โ”‚ โ”‚ โ”œโ”€โ”€ perplexity_client.py # Perplexity AI client implementation
โ”‚ โ”‚ โ””โ”€โ”€ custom_llm_client.py # Generic client for any custom/local LLM
โ”‚ โ”œโ”€โ”€ __init__.py
โ”‚ โ”œโ”€โ”€ base_client.py # Abstract Base Class for all LLM clients
โ”‚ โ””โ”€โ”€ manager.py # Main Multi-Client Proxy logic and example usage
โ”œโ”€โ”€ .env.example # Example file for environment variables
โ”œโ”€โ”€ requirements.txt # Python dependencies
โ”œโ”€โ”€ LICENSE # MIT License file
โ””โ”€โ”€ .gitignore # Git ignore file for common exclusions

๐Ÿš€ Getting Started

Follow these steps to set up and run the MCP LLM Client.

Prerequisites

  • Python 3.8+
  • pip (Python package installer)

Installation Steps

1. Clone the repository:

git clone https://github.com/PrashantHalaki/mcp_llm_client.git
cd mcp-llm-client

2. Install dependencies:

The project uses google-generativeai, openai, and requests. You can install them using the provided requirements.txt file:

pip install -r requirements.txt

Configuration

API keys and LLM priority are managed via environment variables for security and flexibility.

1. Required API Keys

GEMINI_API_KEY="YOUR_GOOGLE_GEMINI_API_KEY"
OPENAI_API_KEY="YOUR_OPENAI_API_KEY"
PERPLEXITY_API_KEY="YOUR_PERPLEXITY_API_KEY"

2. Optional: Environment Variables

CUSTOM_LLM_URL="http://localhost:5000/generate" # Replace with your custom LLM's API endpoint
CUSTOM_LLM_API_KEY="YOUR_OPTIONAL_CUSTOM_LLM_API_KEY" # Only if your custom LLM requires one
CUSTOM_LLM_MODEL="YOUR_LLM_MODEL" # Only if you want to use model other than mistral
GEMINI_MODEL="YOUR_GEMINI_MODEL" # Only if you want to use model other than gemini-1.5-flash
OPENAI_MODEL="YOUR_OPEN_AI_MODEL" # Only if you want to use model other than gpt-3.5-turbo
PERPLEXITY_MODEL="YOUR_PERPLEXITY_MODEL" # Only if you want to use model other than sonar-pro

3. Define the priority order for LLM clients (comma-separated, case-insensitive)

Available clients: gemini, chatgpt, perplexity, custom

Example: gemini,chatgpt,custom,perplexity (Gemini first, then ChatGPT, etc.)

LLM_PRIORITY="gemini,chatgpt,custom,perplexity"

LLM_PRIORITY: This variable dictates the order in which the MCP client attempts to connect to the LLMs. If the first one fails, it moves to the next. If this variable is not set, the default order is gemini,chatgpt,perplexity,custom.

If an API key for a specific service is not set, that client will issue a warning and might not function, but the MCPClient will still attempt to use the next available client in the priority list.

Load environment variables (optional, but recommended for local development):

While the client directly reads from os.getenv(), for local development, you might want to use a library like python-dotenv to automatically load variables from your .env file.

pip install python-dotenv

Then, at the top of your manager.py (or any entry point), add:

# If LLM_PRIORITY is not set, it defaults to "gemini,chatgpt,perplexity,custom".
from mcp_client import MCPClient

๐Ÿ’ก Usage

The MCPClient provides a unified interface for all LLMs, supporting both streaming and non-streaming modes, text and JSON output, and extra parameters.

1. Basic Text Generation (Non-Streaming)

from mcp_client import MCPClient
import os

mcp_client = MCPClient(priority_order=os.getenv("LLM_PRIORITY"))
prompt = "What is the capital of France?"
response_text, client_name = mcp_client.generate_response(prompt, response_format="text")
if response_text:
	print(f"Response from {client_name}:")
	print(response_text)
else:
	print("Failed to get a response from any LLM client.")

2. Streaming Text Generation

from mcp_client import MCPClient
import os

mcp_client = MCPClient(priority_order=os.getenv("LLM_PRIORITY"))
prompt = "Explain the concept of gravity in simple terms."
print("Streaming response:")
first = True
for chunk, client_name in mcp_client.generate_response(prompt, response_format="text", stream=True):
	if first:
		print(f"[{client_name}] ", end="", flush=True)
		first = False
	print(chunk, end="", flush=True)

3. JSON Response Generation (Non-Streaming)

from mcp_client import MCPClient
import os
import json

mcp_client = MCPClient(priority_order=os.getenv("LLM_PRIORITY"))

json_prompt = "List three famous landmarks in London. Provide the response as a JSON object where the key is 'landmarks' and the value is an array of strings."
response_json, client_name_json = mcp_client.generate_response(json_prompt, response_format="json")
if response_json:
	print(f"Response from {client_name_json} (JSON):")
	try:
		parsed_json = json.loads(response_json)
		print(json.dumps(parsed_json, indent=2))
	except json.JSONDecodeError:
		print(f"Warning: Could not parse response as JSON. Raw response:\n{response_json}")
else:
	print("Failed to get a JSON response from any LLM client.")

4. Streaming JSON Response Generation

from mcp_client import MCPClient
import os

mcp_client = MCPClient(priority_order=os.getenv("LLM_PRIORITY"))

prompt = "List three famous rivers in India. Provide the response as a JSON object where the key is 'rivers' and the value is an array of strings."
print("Streaming JSON response:")
first = True
for chunk, client_name in mcp_client.generate_response(prompt, response_format="json", stream=True):
	if first:
		print(f"[{client_name}] ", end="", flush=True)
		first = False
	print(chunk, end="", flush=True)
print()

5. Passing Additional Parameters (e.g., temperature)

from mcp_client import MCPClient
import os

mcp_client = MCPClient(priority_order=os.getenv("LLM_PRIORITY"))

creative_prompt = "Write a short, whimsical story about a squirrel who learns to fly."
response_creative, client_name_creative = mcp_client.generate_response(
creative_prompt, response_format="text", temperature=0.8
)
if response_creative:
    print(f"Response from {client_name_creative} (Text, Creative):")
    print(response_creative)
else:
    print("Failed to get a creative response from any LLM client.")

6. Custom LLM Usage

from mcp_client import MCPClient
import os

mcp_client = MCPClient(priority_order=os.getenv("LLM_PRIORITY"))

custom_llm_prompt = "What is your current model?"
response_custom, client_name_custom = mcp_client.generate_response(custom_llm_prompt, response_format="text")
if response_custom:
	print(f"Response from {client_name_custom}:")
	print(response_custom)
else:
	print("Failed to get a response from the custom LLM (or it's not prioritized/configured).")

API Notes:

  • generate_response(prompt, response_format, stream, **kwargs) is the main entry point.
  • If stream=False (default), returns a tuple (response, client_name).
  • If stream=True, returns a generator yielding (chunk, client_name) tuples.
  • You can set LLM_STREAMING=true in your environment to make streaming the default for all calls (can be overridden per-call).

๐Ÿค Contributing

Contributions are welcome! If you have suggestions for improvements, bug fixes, or new features, please open an issue or submit a pull request.

Please read our CONTRIBUTING.md guide before making any changes.

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ”— Credits

Built with โค๏ธ by Prashant Halaki

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_llm_client_proxy-0.3.0.tar.gz (15.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_llm_client_proxy-0.3.0-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file mcp_llm_client_proxy-0.3.0.tar.gz.

File metadata

  • Download URL: mcp_llm_client_proxy-0.3.0.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.13

File hashes

Hashes for mcp_llm_client_proxy-0.3.0.tar.gz
Algorithm Hash digest
SHA256 d7a34bb2baa6949ec08bd138e71f5e03560badf523312197c09891eff08c7ef3
MD5 720b7ed5f1c65838fe125255b9121aa0
BLAKE2b-256 397cae3f8b144ca9f669dfdd2acb9106e7676763c339b0790cdb15117146a94c

See more details on using hashes here.

File details

Details for the file mcp_llm_client_proxy-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mcp_llm_client_proxy-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8882868500a57e666938581eb81867d03500c79bbcc7bf6cfc57c2b89bd92909
MD5 d59643bf8624685872486c9a638302ca
BLAKE2b-256 8d8cd68ab137550652f97abdb02218ae8f3defa178505d133d4e7f45ceb1b9d0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page