package.json•588 B
{
"name": "mattermost-mcp-server",
"version": "1.0.0",
"description": "MCP server for Mattermost integration",
"type": "module",
"main": "build/index.js",
"bin": {
"mattermost-mcp-server": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc && node build/index.js"
},
"keywords": [
"mcp",
"mattermost",
"chat"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
}
}