File tree Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ FROM alpine:latest
2
+
3
+ RUN apk add --no-cache ca-certificates
4
+
5
+ COPY --from=public.ecr.aws/opslevel/mcp:latest /usr/local/bin/opslevel-mcp /bin/opslevel-mcp
6
+
7
+ ENTRYPOINT ["/opslevel-mcp" ]
Original file line number Diff line number Diff line change
1
+ startCommand :
2
+ type : stdio
3
+ configSchema :
4
+ type : object
5
+ required :
6
+ - opslevelApiToken
7
+ properties :
8
+ opslevelApiToken :
9
+ type : string
10
+ description : OpsLevel API token
11
+ commandFunction : |
12
+ (config) => ({
13
+ command: 'opslevel-mcp',
14
+ env: { OPSLEVEL_API_TOKEN: config.opslevelApiToken }
15
+ })
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ WORKDIR /app
5
5
RUN apt-get update && \
6
6
apt-get install -y ca-certificates jq && \
7
7
apt-get purge && apt-get clean && apt-get autoclean
8
- COPY opslevel /usr/local/bin
8
+ COPY opslevel-mcp /usr/local/bin
You can’t perform that action at this time.
0 commit comments