You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,28 @@ MCP Gateway builds on the MCP spec by sitting **in front of** MCP Server or REST
50
50
51
51
---
52
52
53
+
## Quick Start: PyPi
54
+
55
+
MCP Gateway is [published on PyPi](https://pypi.org/project/mcp-contextforge-gateway) as `mcp-contextforge-gateway`. You can install and start a server with:
56
+
57
+
```bash
58
+
# Create a virtual environment and activate it
59
+
python3 -m venv .venv
60
+
. ./.venv/bin/activate
61
+
62
+
# Install mcp-contextforge-gateway
63
+
pip install mcp-contextforge-gateway
64
+
65
+
# Run mcpgateway with default options, listening on port 4444
66
+
mcpgateway
67
+
68
+
# Optional: configure env, and login with admin:password at http://127.0.0.1:9999/admin
description = "A production-grade MCP Gateway & Proxy built with FastAPI. Supports multi-server registration, virtual server composition, authentication, retry logic, observability, protocol translation, and a unified federated tool catalog."
0 commit comments