Initial commit

This commit is contained in:
2025-10-28 11:50:15 +00:00
commit 057359608b
21 changed files with 1742 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"]