From 2820dd57e24fad1d45fd42b2cf0ba39069a3cc0d Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Wed, 2 Apr 2025 21:47:14 -0700 Subject: [PATCH] doc: readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ccbfb5d..4c39b5e 100644 --- a/README.md +++ b/README.md @@ -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 -- your_mcp_server_command +uvx mcpo --port 8000 --api-key "hello-world" -- your_mcp_server_command ``` Or, if you’re using Python: ```bash pip install mcpo -mcpo --port 8000 -- your_mcp_server_command +mcpo --port 8000 --api-key "hello-world" -- your_mcp_server_command ``` Example: ```bash -uvx mcpo --port 8000 -- uvx mcp-server-time --local-timezone=America/New_York +uvx mcpo --port 8000 --api-key "hello-world" -- uvx mcp-server-time --local-timezone=America/New_York ``` That’s 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).