mcp-discord/package.json

59 lines
1.4 KiB
JSON

{
"name": "mcp-discord",
"version": "1.3.4",
"description": "Model Context Protocol (MCP) server for Discord integration, allowing Claude and other MCP clients to interact with Discord",
"main": "build/index.js",
"bin": {
"mcp-discord": "build/index.js"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node build/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"test-api": "node test-api.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"discord",
"claude",
"ai",
"chatbot",
"automation"
],
"author": "Barry Yip <barry99625@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/barryyip0625/mcp-discord.git"
},
"bugs": {
"url": "https://github.com/barryyip0625/mcp-discord/issues"
},
"homepage": "https://github.com/barryyip0625/mcp-discord#readme",
"files": [
"build/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^20.17.50",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"zod": "^3.25.13"
}
}