Skip to content

Commit d96782b

Browse files
feat: casing updated
1 parent dc3eab9 commit d96782b

File tree

12 files changed

+264
-0
lines changed

12 files changed

+264
-0
lines changed

mcp-aiscrape/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

mcp-deepresearch/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

mcp-embeddings/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

mcp-imagegen/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

mcp-nsfw/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

mcp-objectdetection/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

mcp-sentiment/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

mcp-speectotext/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

mcp-texttospeech/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

mcp-translate/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
WORKDIR /app
5+
6+
# Install dependencies
7+
COPY package*.json ./
8+
RUN npm install --ignore-scripts
9+
10+
# Copy the rest of the application source code
11+
COPY . .
12+
13+
# Build the project
14+
RUN npm run build
15+
16+
# Expose port if needed (update if your server uses another port)
17+
# EXPOSE 3000
18+
19+
ENV JIGSAWSTACK_API_KEY=<YOUR_KEY>
20+
21+
# Command will be provided by smithery.yaml
22+
CMD ["node", "dist/index.js"]

0 commit comments

Comments
 (0)