feat: update to cloud-hosted architecture with port 3045

Switch default port from 3000 to 3045 in Dockerfile and docker-compose.
Add MCP instructions to server for AI client guidance. Update README to
reflect cloud-hosted model with per-user headers, 42 tools, and session
management. Add .mcp.json to .gitignore to prevent leaking credentials.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Danijel
2026-03-18 00:39:09 +01:00
parent fe432d4a09
commit 89e1b30a93
5 changed files with 201 additions and 57 deletions

View File

@@ -18,7 +18,7 @@ RUN npm ci --omit=dev --ignore-scripts && npm cache clean --force
COPY --from=builder /app/dist ./dist
ENV PORT=3000
EXPOSE 3000
ENV PORT=3045
EXPOSE 3045
CMD ["node", "dist/http-server.js"]