diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1f36010 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config +FROM node:lts-alpine +WORKDIR /usr/src/app + +# Install dependencies and build +COPY package.json package-lock.json tsconfig.json ./ +COPY src ./src +RUN npm install --ignore-scripts && npm run build + +# Run +ENTRYPOINT ["node", "build/index.js"] diff --git a/smithery.yaml b/smithery.yaml new file mode 100644 index 0000000..55f0e01 --- /dev/null +++ b/smithery.yaml @@ -0,0 +1,13 @@ +# Smithery configuration file: https://smithery.ai/docs/build/project-config + +startCommand: + type: stdio + commandFunction: + # A JS function that produces the CLI command based on the given config to start the MCP on stdio. + |- + (config) => ({ command: 'node', args: ['build/index.js'], env: {} }) + configSchema: + # JSON Schema defining the configuration options for the MCP. + type: object + properties: {} + exampleConfig: {}