package.json•1.35 kB
{
"name": "real-estate-mcp",
"version": "0.1.0",
"description": "MCP server for real estate data search and mortgage calculations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"real-estate-mcp": "dist/index.js"
},
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"type-check": "tsc --noEmit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klappe-pm/Real-Estate-MCP.git"
},
"keywords": [
"mcp",
"real-estate",
"zillow",
"redfin",
"mls",
"mortgage",
"calculator"
],
"author": "Kevin Lappe",
"license": "MIT",
"bugs": {
"url": "https://github.com/klappe-pm/Real-Estate-MCP/issues"
},
"homepage": "https://github.com/klappe-pm/Real-Estate-MCP#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.34.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"axios": "^1.11.0",
"dotenv": "^17.2.1",
"node-cache": "^5.1.2",
"zod": "^3.25.76"
}
}