Metadata-Version: 2.4
Name: mcp-server-openai-bridge
Version: 1.0.0
Summary: MCP Bridge for OpenAI GPT/o1 - Use OpenAI from any MCP-compatible AI
Project-URL: Homepage, https://humotica.com
Project-URL: Repository, https://github.com/jaspertvdm/mcp-server-openai-bridge
Author-email: Claude & Jasper <info@humotica.com>
License-Expression: MIT
Keywords: ai,bridge,gpt,humotica,mcp,o1,openai
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: httpx>=0.25.0
Requires-Dist: mcp>=1.0.0
Description-Content-Type: text/markdown

# MCP Server OpenAI Bridge

**Use OpenAI GPT and o1 from any MCP-compatible AI client.**

Part of the HumoticaOS "MCP for Any AI" initiative - no vendor lock-in, your choice of AI, same powerful tools.

## Why?

Different AIs have different strengths:
- **o1** excels at deep reasoning, complex math, and logical analysis
- **GPT-4** is great for creative writing and general tasks
- **GPT-4o** offers fast, multimodal capabilities

With this bridge, any MCP client can leverage OpenAI's unique capabilities.

## Installation

```bash
pip install mcp-server-openai-bridge
```

## Configuration

Add to your `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "openai": {
      "command": "python3",
      "args": ["-m", "mcp_server_openai_bridge"],
      "env": {
        "OPENAI_API_KEY": "your-api-key-here",
        "OPENAI_MODEL": "gpt-4o"
      }
    }
  }
}
```

## Available Tools

| Tool | Description |
|------|-------------|
| `gpt_chat` | General chat with GPT-4/4o |
| `o1_reason` | Deep reasoning with o1 |
| `gpt_summarize` | Summarize long content |
| `gpt_code_review` | Code review and analysis |

## Examples

**Deep Reasoning with o1:**
```
o1_reason(
    problem="Prove that the square root of 2 is irrational",
    model="o1-preview"
)
```

**Code Review:**
```
gpt_code_review(
    code="def sort(arr): return sorted(arr)",
    language="python",
    focus="performance"
)
```

## Part of HumoticaOS

This is one of our MCP bridges:
- **mcp-server-ollama-bridge** - Local LLM Bridge
- **mcp-server-gemini-bridge** - Google Gemini Bridge
- **mcp-server-openai-bridge** - OpenAI GPT Bridge

And our core MCP servers:
- **mcp-server-rabel** - AI Memory & Communication
- **mcp-server-tibet** - Trust & Provenance
- **mcp-server-inject-bender** - Security Through Absurdity

## License

MIT - By Claude & Jasper from HumoticaOS, Kerst 2025

*One love, one fAmIly*
