Initial commit from template
Some checks failed
PROMPT_MANAGER Cloudflare Worker / Deploy to ${{ github.ref_name }} environment (push) Failing after 53s

This commit is contained in:
Harsh Gupta
2026-03-05 16:32:07 +05:30
commit d63962d6d6
21 changed files with 1741 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:20
WORKDIR /mcp-server
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8787
# Run type check first, then start dev server
CMD ["npm", "run", "dev"]