UNPKG

mcp-discord-agent-comm

Version:

An MCP server enabling async communication between AI agents and users via Discord - perfect for long-running tasks requiring remote interaction

54 lines (53 loc) 1.29 kB
{ "name": "mcp-discord-agent-comm", "version": "0.2.0", "description": "An MCP server enabling async communication between AI agents and users via Discord - perfect for long-running tasks requiring remote interaction", "main": "dist/index.js", "type": "module", "scripts": { "build": "tsc", "dev": "tsx src/index.ts", "start": "node dist/index.js", "typecheck": "tsc --noEmit", "lint": "biome check . --write", "ci": "bun run typecheck && bun run lint && bun run build", "prepublishOnly": "bun run ci" }, "keywords": [ "mcp", "model-context-protocol", "discord", "ai-agents", "async-communication", "remote-interaction", "ai", "claude", "notifications", "agent-communication" ], "author": "Eugen Eistrach", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.13.0", "discord.js": "^14.20.0", "dotenv": "^16.5.0", "zod": "^3.25.67" }, "devDependencies": { "@biomejs/biome": "^2.0.3", "@types/node": "^24.0.3", "tsx": "^4.20.3", "typescript": "^5.8.3" }, "bin": { "mcp-discord-agent-comm": "./dist/index.js" }, "files": ["dist", "README.md", "LICENSE"], "engines": { "node": ">=18.0.0" }, "repository": { "type": "git", "url": "https://github.com/EugenEistrach/mcp-discord-agent-comm.git" } }