@cenogram/mcp-server 0.5.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -8
- package/dist/api-client.d.ts +279 -1
- package/dist/api-client.js +117 -4
- package/dist/error-messages.js +1 -1
- package/dist/formatters.d.ts +14 -1
- package/dist/formatters.js +647 -9
- package/dist/index.d.ts +1 -0
- package/dist/index.js +129 -108
- package/dist/tools.js +336 -47
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cenogram/mcp-server",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP server for Polish
|
|
3
|
+
"version": "0.11.0",
|
|
4
|
+
"description": "MCP server for Polish real estate: 8M+ transaction prices from notarial deeds (RCN registry, not listings), plus per-parcel context by cadastral ID - zoning, flood risk, heritage, building permits, agricultural land, land use and soil class, transit, nature, mining terrains and groundwater reservoirs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"cenogram-mcp": "./dist/index.js"
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc -p tsconfig.build.json",
|
|
14
14
|
"dev": "tsx src/index.ts",
|
|
15
|
+
"docs:generate": "tsx scripts/generate-tool-reference.ts",
|
|
15
16
|
"test": "vitest run",
|
|
16
17
|
"lint": "eslint .",
|
|
17
18
|
"typecheck": "tsc --noEmit",
|
|
@@ -48,6 +49,11 @@
|
|
|
48
49
|
"transactions",
|
|
49
50
|
"transaction-data",
|
|
50
51
|
"geospatial",
|
|
52
|
+
"cadastral",
|
|
53
|
+
"parcel-data",
|
|
54
|
+
"zoning",
|
|
55
|
+
"flood-risk",
|
|
56
|
+
"due-diligence",
|
|
51
57
|
"rcn",
|
|
52
58
|
"nieruchomosci"
|
|
53
59
|
],
|