From 99498a79987a074c16657e9eb8f1c4f6819106c2 Mon Sep 17 00:00:00 2001 From: Xavier Armitage Date: Wed, 18 Jun 2025 17:01:38 +1000 Subject: [PATCH] Fix uvicorn command in custom-server README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The command had two issues: 1. Used 'custom-server' instead of 'custom_server' (Python modules use underscores) 2. Referenced ':mcp' instead of ':app' (the FastAPI instance is named 'app') 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- examples/custom-server/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/custom-server/README.md b/examples/custom-server/README.md index 5e8546d..d0413b9 100644 --- a/examples/custom-server/README.md +++ b/examples/custom-server/README.md @@ -19,7 +19,7 @@ uv sync - start the server locally. Changes will trigger a reload: ```bash -uvicorn custom-server.app:mcp --reload +uvicorn custom_server.app:app --reload ``` ## Deploying a custom MCP server on Databricks Apps