package.jsonā¢1.38 kB
{
"name": "zulip-mcp-server",
"version": "1.5.0",
"description": "MCP server that exposes Zulip REST API capabilities as tools for LLMs",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "npm run clean && tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"dev": "tsx src/server.ts",
"start": "node dist/server.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"typecheck": "tsc --noEmit",
"precommit": "npm run lint && npm run typecheck && npm run build",
"prepare": "npm run build",
"audit:fix": "npm audit fix",
"quality": "npm run lint && npm run typecheck && npm audit",
"quality-full": "npm run lint && npm run typecheck && npm run test && npm audit"
},
"keywords": [
"mcp",
"zulip",
"chat",
"api",
"llm",
"tools"
],
"author": "Clarisights",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.0",
"dotenv": "^16.5.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"bin": {
"zulip-mcp-server": "./dist/server.js"
}
}