@cenogram/mcp-server 0.2.0 → 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.
- package/README.md +25 -6
- package/dist/api-client.d.ts +678 -7
- package/dist/api-client.js +169 -22
- package/dist/auth-dispatch.js +0 -27
- package/dist/client-id.js +0 -5
- package/dist/error-messages.d.ts +4 -0
- package/dist/error-messages.js +50 -7
- package/dist/formatters.d.ts +20 -1
- package/dist/formatters.js +1094 -21
- package/dist/index.d.ts +1 -0
- package/dist/index.js +58 -38
- package/dist/mappings.d.ts +12 -5
- package/dist/mappings.js +131 -14
- package/dist/oauth-jwt.js +1 -3
- package/dist/sentry-scrub.d.ts +2 -0
- package/dist/sentry-scrub.js +14 -0
- package/dist/sentry.d.ts +2 -0
- package/dist/sentry.js +29 -0
- package/dist/tools.d.ts +1 -0
- package/dist/tools.js +485 -84
- package/dist/transport-mode.d.ts +2 -0
- package/dist/transport-mode.js +6 -0
- package/package.json +15 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cenogram/mcp-server",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP
|
|
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,11 @@
|
|
|
16
16
|
"lint": "eslint .",
|
|
17
17
|
"typecheck": "tsc --noEmit",
|
|
18
18
|
"check": "tsc --noEmit && eslint .",
|
|
19
|
-
"prepublishOnly": "npm run lint && npm run
|
|
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,19 @@
|
|
|
36
37
|
"mcpName": "pl.cenogram/mcp-server",
|
|
37
38
|
"keywords": [
|
|
38
39
|
"mcp",
|
|
39
|
-
"real-estate",
|
|
40
40
|
"poland",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
41
|
+
"europe",
|
|
42
|
+
"government-data",
|
|
43
|
+
"official-registry",
|
|
44
|
+
"public-records",
|
|
45
|
+
"real-estate",
|
|
43
46
|
"property",
|
|
44
|
-
"
|
|
47
|
+
"property-data",
|
|
48
|
+
"transactions",
|
|
49
|
+
"transaction-data",
|
|
50
|
+
"geospatial",
|
|
51
|
+
"rcn",
|
|
52
|
+
"nieruchomosci"
|
|
45
53
|
],
|
|
46
54
|
"license": "MIT",
|
|
47
55
|
"publishConfig": {
|