Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
FROM node:lts-alpine AS build
WORKDIR /app

# Install dependencies
COPY package.json package-lock.json ./
RUN npm ci --ignore-scripts

# Copy source and build
COPY tsconfig.json ./
COPY src ./src
RUN npm run build

# Production image
FROM node:lts-alpine
WORKDIR /app
ENV NODE_ENV=production

# Copy production artifacts
COPY --from=build /app/dist ./dist
COPY package.json package-lock.json ./

# Install production dependencies
RUN npm ci --production --ignore-scripts

# Start the MCP server
CMD ["node", "dist/index.js"]
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# LittleSis MCP

[![smithery badge](https://smithery.ai/badge/@code-rabi/littlesis-mcp)](https://smithery.ai/server/@code-rabi/littlesis-mcp)

Updated for release sync

### Installing via Smithery

To install littlesis-mcp for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@code-rabi/littlesis-mcp):

```bash
npx -y @smithery/cli install @code-rabi/littlesis-mcp --client claude
```
18 changes: 18 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config

startCommand:
type: stdio
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'node', args: ['dist/index.js'], env: config.debug ? { DEBUG: '1' } : {} })
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
properties:
debug:
type: boolean
default: false
description: Enable debug logging
exampleConfig:
debug: false