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
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM node:22-alpine AS builder
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
FROM node:22.0.0-alpine AS builder
WORKDIR /app

# Copy package files
Expand All @@ -24,4 +25,4 @@ COPY --from=builder /app/package.json /app/package.json
ENV NODE_ENV=production
RUN npm install --omit=dev --ignore-scripts

ENTRYPOINT ["node", "dist/index.js"]
ENTRYPOINT ["node", "dist/index.js"]
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Zulip MCP Server
[![smithery badge](https://smithery.ai/badge/@Monadical-SAS/zulip-mcp)](https://smithery.ai/server/@Monadical-SAS/zulip-mcp)

MCP Server for the Zulip API, enabling AI assistants like Claude to interact with Zulip workspaces.

Expand Down Expand Up @@ -151,4 +152,4 @@ docker build -t mcp/zulip .

## License

This MCP server is licensed under the MIT License.
This MCP server is licensed under the MIT License.
29 changes: 29 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# 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: { ZULIP_EMAIL: config.zulipEmail, ZULIP_API_KEY: config.zulipApiKey, ZULIP_URL: config.zulipUrl } })
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- zulipEmail
- zulipApiKey
- zulipUrl
properties:
zulipEmail:
type: string
description: The Zulip bot's email address
zulipApiKey:
type: string
description: The Zulip bot's API key
zulipUrl:
type: string
description: The Zulip instance base URL
exampleConfig:
zulipEmail: [email protected]
zulipApiKey: abc123xyz
zulipUrl: https://example.zulipchat.com