package.json•1.9 kB
{
"name": "@heptabase/mcp",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) service for interacting with Heptabase backup data. This service allows AI assistants to search, retrieve, analyze, and export Heptabase whiteboards and cards.",
"main": "dist/index.js",
"bin": {
"heptabase-mcp": "dist/index.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --config jest.integration.config.js",
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"type-check": "tsc --noEmit",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"heptabase",
"mcp",
"model-context-protocol",
"claude",
"ai-assistant",
"knowledge-management"
],
"author": "Stanley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/heptabase-mcp.git"
},
"bugs": {
"url": "https://github.com/yourusername/heptabase-mcp/issues"
},
"homepage": "https://github.com/yourusername/heptabase-mcp#readme",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"type": "commonjs",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.4",
"@types/node": "^22.15.18",
"chokidar": "^4.0.3",
"dotenv": "^16.5.0",
"fs-extra": "^11.3.0",
"lodash": "^4.17.21",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"unzipper": "^0.12.3",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/chokidar": "^1.7.5",
"@types/dotenv": "^6.1.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/unzipper": "^0.10.11",
"archiver": "^7.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.3.4"
}
}