package.jsonā¢1.5 kB
{
"name": "@relentless/mcp",
"version": "2.0.0",
"description": "MCP server for Relentless CMS - enables AI assistants to read/write to Notion via Relentless API with validation",
"type": "module",
"bin": {
"relentless-mcp": "./build/index.js"
},
"main": "./build/index.js",
"files": [
"build/**/*",
"README.md",
"claude_desktop_config.example.json"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "pnpm build",
"clean": "rm -rf build",
"rebuild": "pnpm clean && pnpm build",
"publish:npm": "npm publish --access public",
"publish:dry-run": "npm publish --dry-run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@notionhq/client": "^2.2.15"
},
"devDependencies": {
"@types/node": "^20.11.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/pranayaryal/relentless-mcp.git"
},
"bugs": {
"url": "https://github.com/pranayaryal/relentless-mcp/issues"
},
"homepage": "https://github.com/pranayaryal/relentless-mcp#readme",
"author": "Pranay Aryal",
"license": "MIT",
"keywords": [
"mcp",
"model-context-protocol",
"relentless",
"notion",
"cms",
"ai",
"claude",
"claude-desktop"
],
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}