-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "propstack-mcp-server",
"mcpName": "io.github.ashev87/propstack-mcp",
"version": "1.1.1",
"type": "module",
"description": "MCP server for Propstack real estate CRM — connect AI assistants to your Propstack data",
"main": "dist/index.js",
"bin": {
"propstack-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"inspector": "npx @modelcontextprotocol/inspector -- node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"propstack",
"real-estate",
"crm",
"immobilien",
"makler",
"ai",
"claude",
"chatgpt"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ashev87/propstack-mcp.git"
},
"homepage": "https://github.com/ashev87/propstack-mcp#readme",
"bugs": {
"url": "https://github.com/ashev87/propstack-mcp/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^17.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
}
}