UNPKG

@chinchillaenterprises/mcp-slack

Version:

MCP server for Slack. Single account loaded from env (SLACK_BOT_TOKEN); multi-workspace via separate server entries.

56 lines (55 loc) 1.55 kB
{ "name": "@chinchillaenterprises/mcp-slack", "version": "4.4.0", "main": "dist/index.js", "type": "module", "scripts": { "build": "tsc", "dev": "tsc --watch", "prepare": "npm run build", "test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage", "test:fast": "NODE_OPTIONS=--experimental-vm-modules jest", "test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage", "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch" }, "keywords": [ "mcp", "slack", "messaging", "modelcontextprotocol" ], "author": "Chinchilla Enterprises", "license": "MIT", "description": "MCP server for Slack. Single account loaded from env (SLACK_BOT_TOKEN); multi-workspace via separate server entries.", "repository": { "type": "git", "url": "git+https://github.com/ChinchillaEnterprises/ChillMCP.git" }, "bugs": { "url": "https://github.com/ChinchillaEnterprises/ChillMCP/issues" }, "homepage": "https://github.com/ChinchillaEnterprises/ChillMCP/tree/main/mcp-slack", "publishConfig": { "access": "public" }, "bin": { "mcp-slack": "./dist/index.js" }, "files": [ "dist" ], "dependencies": { "@modelcontextprotocol/sdk": "^1.12.3", "@slack/web-api": "^7.9.2", "fuse.js": "^7.1.0", "zod": "^3.25.64" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/jest": "^29.5.12", "@types/node": "^24.0.1", "jest": "^29.7.0", "ts-jest": "^29.1.2", "typescript": "^5.8.3" } }