UNPKG

@lmquang/mcp-discord-webhook

Version:

MCP server to send messages and embeds to Discord webhooks via stdio.

53 lines (52 loc) 1.23 kB
{ "name": "@lmquang/mcp-discord-webhook", "version": "1.3.1", "description": "MCP server to send messages and embeds to Discord webhooks via stdio.", "main": "dist/server.js", "types": "dist/server.d.ts", "bin": { "mcp-discord-webhook": "dist/cli.js" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "start": "node dist/cli.js", "prepublishOnly": "npm run build", "publish:patch": "./scripts/publish.sh patch", "publish:minor": "./scripts/publish.sh minor", "publish:major": "./scripts/publish.sh major" }, "repository": { "type": "git", "url": "git+https://github.com/lmquang/mcp-discord-webhook.git" }, "keywords": [ "mcp", "discord", "webhook", "llm", "model-context-protocol" ], "author": "Quang Le <quanglm.ops@gmail.com>", "license": "MIT", "engines": { "node": ">=16.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.11.0", "axios": "^1.6.0", "openai": "^4.97.0", "zod": "^3.22.4" }, "devDependencies": { "@types/express": "^4.17.21", "@types/node": "^18.18.0", "ts-node": "^10.9.1", "typescript": "^5.2.2" }, "type": "module" }