change cmd
Some checks failed
Go CI / Test (push) Failing after 21s
Go CI / Build (push) Successful in 55s
Build and Push container / build_concierge_backend (push) Successful in 1m21s

This commit is contained in:
Angel Nunez Mencias 2025-06-02 03:41:06 +02:00
parent e0beca18cf
commit c3e2abd2bc
Signed by: angel.nunez
SSH key fingerprint: SHA256:z1nFAg1v1AfbhEHrgBetByUJUwziv2R2f4VyN75opcg
2 changed files with 3 additions and 2 deletions

View file

@ -38,7 +38,6 @@ WORKDIR /app
COPY --from=build /workspace/openmcpauthproxy /app/ COPY --from=build /workspace/openmcpauthproxy /app/
ADD config.yaml /app ADD config.yaml /app
RUN find .
ENTRYPOINT ["/app/openmcpauthproxy"] ENTRYPOINT ["/app/openmcpauthproxy"]

View file

@ -6,13 +6,15 @@ base_url: "http://localhost:8000" # Base URL for the MCP server
port: 8000 # Port for the MCP server port: 8000 # Port for the MCP server
timeout_seconds: 10 timeout_seconds: 10
# Transport mode configuration # Transport mode configuration
transport_mode: "stdio" # Options: "sse" or "stdio" transport_mode: "stdio" # Options: "sse" or "stdio"
# stdio-specific configuration (used only when transport_mode is "stdio") # stdio-specific configuration (used only when transport_mode is "stdio")
stdio: stdio:
enabled: true enabled: true
user_command: "npx -y @modelcontextprotocol/server-github" user_command: uvx mcp-server-time --local-timezone=Europe/Zurich
#user_command: "npx -y @modelcontextprotocol/server-github"
work_dir: "" # Working directory (optional) work_dir: "" # Working directory (optional)
# env: # Environment variables (optional) # env: # Environment variables (optional)
# - "NODE_ENV=development" # - "NODE_ENV=development"