We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2386ca0 commit b524040Copy full SHA for b524040
Dockerfile
@@ -0,0 +1,18 @@
1
+FROM node:18-alpine
2
+
3
+WORKDIR /app
4
5
+# Copy package files
6
+COPY package*.json ./
7
8
+# Install dependencies
9
+RUN npm install
10
11
+# Copy application code
12
+COPY . .
13
14
+# Build the application
15
+RUN npm run build
16
17
+# Command will be provided by smithery.yaml
18
+CMD ["node", "dist/index.js"]
smithery.yaml
@@ -0,0 +1,17 @@
+# Smithery.ai configuration
+startCommand:
+ type: stdio
+ configSchema:
+ # JSON Schema defining the configuration options for the MCP.
+ {}
+ commandFunction:
+ # A function that produces the CLI command to start the MCP on stdio.
+ |-
+ (config) => ({
+ "command": "node",
+ "args": [
+ "dist/index.js"
+ ],
+ "env": {
+ }
+ })
0 commit comments