From 8199b534b964b62fd9dfabe270a32eb34be5ea12 Mon Sep 17 00:00:00 2001 From: tadepmo Date: Fri, 24 Apr 2026 15:00:03 -0500 Subject: [PATCH] docs(python): fix incorrect CLI args in Python project README template The README template referenced 'kmcp deploy mcp --apply' which is not a valid command. The correct command is 'kmcp deploy'. Fixed in both Option 2 (Docker-Only Development) and Deployment (Kubernetes) sections of the README template. Fixes #89 Signed-off-by: tadepmo --- pkg/cli/internal/frameworks/python/templates/README.md.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cli/internal/frameworks/python/templates/README.md.tmpl b/pkg/cli/internal/frameworks/python/templates/README.md.tmpl index 88e3220..0c6881a 100644 --- a/pkg/cli/internal/frameworks/python/templates/README.md.tmpl +++ b/pkg/cli/internal/frameworks/python/templates/README.md.tmpl @@ -82,7 +82,7 @@ tests/ # Generated tests 3. **Deploy to Kubernetes**: ```bash - kmcp deploy mcp --apply + kmcp deploy ``` 4. **Add New Tools**: @@ -214,7 +214,7 @@ docker run -i {{.ProjectName}}:latest ```bash # Deploy to Kubernetes -kmcp deploy mcp --apply +kmcp deploy # Check deployment status kubectl get mcpserver {{.ProjectName}}