@cenogram/mcp-server 0.1.7 → 0.5.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.1.7",
4
- "description": "MCP Server for Polish real estate transaction data (7M+ transactions from RCN)",
3
+ "version": "0.5.0",
4
+ "description": "MCP server for Polish property prices from notarial deeds, not listings - 8M+ transactions from the RCN registry",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "cenogram-mcp": "./dist/index.js"
@@ -16,10 +16,12 @@
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",
24
+ "jose": "^6.2.3",
23
25
  "undici": "^5.29.0",
24
26
  "zod": "^3.24.0"
25
27
  },
@@ -35,12 +37,19 @@
35
37
  "mcpName": "pl.cenogram/mcp-server",
36
38
  "keywords": [
37
39
  "mcp",
38
- "real-estate",
39
40
  "poland",
40
- "rcn",
41
- "nieruchomosci",
41
+ "europe",
42
+ "government-data",
43
+ "official-registry",
44
+ "public-records",
45
+ "real-estate",
42
46
  "property",
43
- "transactions"
47
+ "property-data",
48
+ "transactions",
49
+ "transaction-data",
50
+ "geospatial",
51
+ "rcn",
52
+ "nieruchomosci"
44
53
  ],
45
54
  "license": "MIT",
46
55
  "publishConfig": {