raycast-mcp-server 0.1.0

MCP server for Raycast automation on macOS -- 9 tools for search, commands, clipboard, shortcuts, window control, system functions, auth, extensions, workflows
1
2
3
4
5
6
7
8
9
10
11
12
FROM node:18-alpine

WORKDIR /app

# Copy everything
COPY . .

# Install dependencies and build
RUN npm ci && npm run build

# Start the application
CMD ["node", "dist/index.js"]