Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,15 +1,20 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: π‘οΈ
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: docker
|
| 7 |
pinned: true
|
| 8 |
license: apache-2.0
|
| 9 |
-
short_description:
|
| 10 |
---
|
| 11 |
|
| 12 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
> A production-grade MCP server that actually thinks about security.
|
| 15 |
> Built on [PyFundaments](PyFundaments.md) β running on **simpleCity** and **paranoidMode**.
|
|
@@ -24,7 +29,15 @@ Most MCP servers are prompts dressed up as servers. This one has a real architec
|
|
| 24 |
|
| 25 |
## Why this exists
|
| 26 |
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
This hub was built as the antidote:
|
| 30 |
|
|
@@ -216,13 +229,13 @@ Same pattern applies to search providers (`brave β tavily`).
|
|
| 216 |
|
| 217 |
That's it. No config editing. No code changes.
|
| 218 |
|
| 219 |
-
[β Live Demo Space](https://huggingface.co/spaces/codey-lab/
|
| 220 |
|
| 221 |
### Local / Docker
|
| 222 |
|
| 223 |
```bash
|
| 224 |
-
git clone https://github.com/VolkanSah/
|
| 225 |
-
cd
|
| 226 |
cp example-mcp___.env .env
|
| 227 |
# fill in your keys
|
| 228 |
pip install -r requirements.txt
|
|
@@ -405,6 +418,7 @@ None of these are accessible from `app/*`. They are injected as a validated dict
|
|
| 405 |
|
| 406 |
[β PyFundaments Function Overview](PyFundaments%20β%20Function%20Overview.md)
|
| 407 |
[β Module Docs](docs/app/)
|
|
|
|
| 408 |
|
| 409 |
---
|
| 410 |
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Multi-LLM API Gateway
|
| 3 |
emoji: π‘οΈ
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: red
|
| 6 |
sdk: docker
|
| 7 |
pinned: true
|
| 8 |
license: apache-2.0
|
| 9 |
+
short_description: LLM API Gateway with MCP interface
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Multi-LLM API Gateway with MCP interface
|
| 13 |
+
β or Universal MCP Hub (Sandboxed)
|
| 14 |
+
β or universal AI Wrapper over SSE + Quart with some tools on a solid fundament
|
| 15 |
+
|
| 16 |
+
aka: a clean, secure starting point for your own projects.
|
| 17 |
+
Pick the description that fits your use case. They're all correct.
|
| 18 |
|
| 19 |
> A production-grade MCP server that actually thinks about security.
|
| 20 |
> Built on [PyFundaments](PyFundaments.md) β running on **simpleCity** and **paranoidMode**.
|
|
|
|
| 29 |
|
| 30 |
## Why this exists
|
| 31 |
|
| 32 |
+
While building this, we kept stumbling over the same problem β the MCP
|
| 33 |
+
ecosystem is full of servers with hardcoded keys, `os.environ` scattered
|
| 34 |
+
everywhere, zero sandboxing. One misconfigured fork and your API keys are gone.
|
| 35 |
+
|
| 36 |
+
This is exactly the kind of negligence (and worse β outright fraud) that
|
| 37 |
+
[Wall of Shames](https://github.com/Wall-of-Shames) documents: a
|
| 38 |
+
community project exposing fake "AI tools" that exploit non-technical users
|
| 39 |
+
β API wrappers dressed up as custom models, Telegram payment funnels,
|
| 40 |
+
bought stars. If you build on open source, you should know this exists.
|
| 41 |
|
| 42 |
This hub was built as the antidote:
|
| 43 |
|
|
|
|
| 229 |
|
| 230 |
That's it. No config editing. No code changes.
|
| 231 |
|
| 232 |
+
[β Live Demo Space](https://huggingface.co/spaces/codey-lab/Multi-LLM-API-Gateway) (no LLM keys set!)
|
| 233 |
|
| 234 |
### Local / Docker
|
| 235 |
|
| 236 |
```bash
|
| 237 |
+
git clone https://github.com/VolkanSah/Multi-LLM-API-Gateway
|
| 238 |
+
cd Multi-LLM-API-Gateway
|
| 239 |
cp example-mcp___.env .env
|
| 240 |
# fill in your keys
|
| 241 |
pip install -r requirements.txt
|
|
|
|
| 418 |
|
| 419 |
[β PyFundaments Function Overview](PyFundaments%20β%20Function%20Overview.md)
|
| 420 |
[β Module Docs](docs/app/)
|
| 421 |
+
[β Source of this REPO](https://github.com/VolkanSah/Multi-LLM-API-Gateway)
|
| 422 |
|
| 423 |
---
|
| 424 |
|