Merge pull request #30 from open-webui/dev
Some checks are pending
Release / release (push) Waiting to run

refac
This commit is contained in:
Timothy Jaeryang Baek 2025-04-02 21:48:17 -07:00 committed by GitHub
commit 954910ec69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,20 +30,20 @@ mcpo makes your AI tools usable, secure, and interoperable—right now, with zer
We recommend using uv for lightning-fast startup and zero config.
```bash
uvx mcpo --port 8000 --api-key "hello-world" -- your_mcp_server_command
uvx mcpo --port 8000 --api-key "top-secret" -- your_mcp_server_command
```
Or, if youre using Python:
```bash
pip install mcpo
mcpo --port 8000 --api-key "hello-world" -- your_mcp_server_command
mcpo --port 8000 --api-key "top-secret" -- your_mcp_server_command
```
Example:
```bash
uvx mcpo --port 8000 --api-key "hello-world" -- uvx mcp-server-time --local-timezone=America/New_York
uvx mcpo --port 8000 --api-key "top-secret" -- uvx mcp-server-time --local-timezone=America/New_York
```
Thats it. Your MCP tool is now available at http://localhost:8000 with a generated OpenAPI schema — test it live at [http://localhost:8000/docs](http://localhost:8000/docs).