Skip to content

Commit c7afd69

Browse files
committed
chore: Dockerfile for MCP-platform checks (Glama)
Starts the stdio MCP server; introspection (initialize/tools/list) works unauthenticated, tool calls require login — exactly what listing checkers need.
1 parent 7137740 commit c7afd69

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Minimal image for MCP-platform checks (Glama et al.): start the stdio MCP
2+
# server and answer introspection (initialize / tools/list work without
3+
# auth; tool CALLS require `timebook login` or TIMEBOOK_TOKEN).
4+
FROM node:22-alpine
5+
6+
RUN npm install -g @squidcode/timebook
7+
8+
# Stdio MCP server. Auth is per-tool-call, so introspection succeeds
9+
# out of the box; real usage needs a token (see README).
10+
CMD ["timebook", "mcp"]

0 commit comments

Comments
 (0)