package.json•1.6 kB
{
"name": "zapmail-mcp",
"version": "0.0.3",
"description": "A comprehensive Model Context Protocol (MCP) server for the Zapmail API, providing natural language access to all Zapmail features including domain management, mailbox operations, exports, and more.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"bin": {
"zapmail-mcp": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "ZAPMAIL_LOG_LEVEL=DEBUG node src/index.js",
"test": "npm run health",
"health": "echo '{\"jsonrpc\": \"2.0\", \"id\": 1, \"method\": \"tools/invoke\", \"params\": {\"tool_name\": \"health_check\", \"input\": {\"detailed\": true}}}' | node src/index.js"
},
"keywords": [
"mcp",
"zapmail",
"model-context-protocol",
"agent",
"planner",
"domains",
"mailboxes",
"email-automation",
"cold-email",
"api",
"natural-language",
"automation"
],
"author": "Zapmail Team",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dsouzaalan/zapmail-mcp.git"
},
"bugs": {
"url": "https://github.com/dsouzaalan/zapmail-mcp/issues"
},
"homepage": "https://github.com/dsouzaalan/zapmail-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {},
"devDependencies": {},
"files": [
"src",
"README.md",
"STEP_BY_STEP_GUIDE.md",
"QUICK_REFERENCE.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"env.example",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}