@cenogram/mcp-server 0.2.0 → 0.6.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.
@@ -0,0 +1,2 @@
1
+ export declare function isHttpMode(): boolean;
2
+ export declare function channelSrc(): string;
@@ -0,0 +1,6 @@
1
+ export function isHttpMode() {
2
+ return process.argv.includes("--http") || process.env.MCP_TRANSPORT === "http";
3
+ }
4
+ export function channelSrc() {
5
+ return isHttpMode() ? "mcphttp" : "mcpstdio";
6
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cenogram/mcp-server",
3
- "version": "0.2.0",
4
- "description": "MCP Server for Polish real estate transaction data (8M+ transactions from RCN)",
3
+ "version": "0.6.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 and transit",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "cenogram-mcp": "./dist/index.js"
@@ -16,10 +16,11 @@
16
16
  "lint": "eslint .",
17
17
  "typecheck": "tsc --noEmit",
18
18
  "check": "tsc --noEmit && eslint .",
19
- "prepublishOnly": "npm run lint && npm run test && npm run build"
19
+ "prepublishOnly": "npm run lint && npm run build && npm run test"
20
20
  },
21
21
  "dependencies": {
22
22
  "@modelcontextprotocol/sdk": "^1.28.0",
23
+ "@sentry/node": "^10.54.0",
23
24
  "jose": "^6.2.3",
24
25
  "undici": "^5.29.0",
25
26
  "zod": "^3.24.0"
@@ -36,12 +37,24 @@
36
37
  "mcpName": "pl.cenogram/mcp-server",
37
38
  "keywords": [
38
39
  "mcp",
39
- "real-estate",
40
40
  "poland",
41
- "rcn",
42
- "nieruchomosci",
41
+ "europe",
42
+ "government-data",
43
+ "official-registry",
44
+ "public-records",
45
+ "real-estate",
43
46
  "property",
44
- "transactions"
47
+ "property-data",
48
+ "transactions",
49
+ "transaction-data",
50
+ "geospatial",
51
+ "cadastral",
52
+ "parcel-data",
53
+ "zoning",
54
+ "flood-risk",
55
+ "due-diligence",
56
+ "rcn",
57
+ "nieruchomosci"
45
58
  ],
46
59
  "license": "MIT",
47
60
  "publishConfig": {