euparliamentmonitor 1.0.36 → 1.0.38
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
CHANGED
|
@@ -136,7 +136,7 @@ The published site is the audience-facing companion to this npm/TypeScript packa
|
|
|
136
136
|
|
|
137
137
|
**MCP Server Integration**: The project uses the
|
|
138
138
|
[European-Parliament-MCP-Server](https://github.com/Hack23/European-Parliament-MCP-Server)
|
|
139
|
-
package version v1.
|
|
139
|
+
package version v1.4.0 for accessing real EU Parliament data via the Model Context Protocol; the Copilot runner in `.github/workflows/copilot-setup-steps.yml` currently installs v1.4.0 for the local MCP environment.
|
|
140
140
|
|
|
141
141
|
- **MCP Server Status**: ✅ Fully operational — 60+ EP data tools available
|
|
142
142
|
(feeds, direct lookups, analytical tools, intelligence correlation)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "euparliamentmonitor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.38",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "European Parliament Intelligence Platform - Monitor political activity with systematic transparency",
|
|
6
6
|
"main": "scripts/index.js",
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
"esbuild": "0.28.1",
|
|
171
171
|
"eslint": "10.7.0",
|
|
172
172
|
"eslint-config-prettier": "10.1.8",
|
|
173
|
-
"eslint-plugin-jsdoc": "63.0
|
|
173
|
+
"eslint-plugin-jsdoc": "63.1.0",
|
|
174
174
|
"eslint-plugin-security": "4.0.1",
|
|
175
175
|
"eslint-plugin-sonarjs": "4.2.0",
|
|
176
176
|
"fast-check": "4.9.0",
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"husky": "9.1.7",
|
|
181
181
|
"jscpd": "5.0.12",
|
|
182
182
|
"knip": "6.27.0",
|
|
183
|
-
"lint-staged": "17.0
|
|
183
|
+
"lint-staged": "17.1.0",
|
|
184
184
|
"mermaid": "11.16.0",
|
|
185
185
|
"papaparse": "5.5.4",
|
|
186
186
|
"prettier": "3.9.5",
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
"node": ">=26"
|
|
200
200
|
},
|
|
201
201
|
"dependencies": {
|
|
202
|
-
"european-parliament-mcp-server": "1.
|
|
202
|
+
"european-parliament-mcp-server": "1.4.0",
|
|
203
203
|
"markdown-it": "14.3.0",
|
|
204
204
|
"markdown-it-anchor": "9.2.1",
|
|
205
205
|
"markdown-it-attrs": "5.0.0",
|
|
@@ -6,7 +6,7 @@ import type { MCPToolResult } from '../../types/index.js';
|
|
|
6
6
|
/**
|
|
7
7
|
* Classify an error message into a diagnostic error category.
|
|
8
8
|
*
|
|
9
|
-
* Maps EP MCP Server v1.
|
|
9
|
+
* Maps EP MCP Server v1.4.0 structured error codes and generic HTTP/network
|
|
10
10
|
* errors into one of six broad categories used for logging and retry decisions:
|
|
11
11
|
*
|
|
12
12
|
* Returned categories (priority order):
|
|
@@ -26,7 +26,7 @@ export declare function classifyToolError(message: string): string;
|
|
|
26
26
|
* covering the two shapes historically emitted by the EP MCP server.
|
|
27
27
|
*
|
|
28
28
|
* 1. **Uniform envelope** (all feeds as of
|
|
29
|
-
* `european-parliament-mcp-server@1.
|
|
29
|
+
* `european-parliament-mcp-server@1.4.0`) —
|
|
30
30
|
* `{status:"unavailable", items:[], generatedAt:"..."}` established by
|
|
31
31
|
* Hack23/European-Parliament-MCP-Server#301 and extended to
|
|
32
32
|
* `get_events_feed`/`get_procedures_feed` by
|
|
@@ -4,7 +4,7 @@ import { _parseResultPayload } from './parse.js';
|
|
|
4
4
|
/**
|
|
5
5
|
* Classify an error message into a diagnostic error category.
|
|
6
6
|
*
|
|
7
|
-
* Maps EP MCP Server v1.
|
|
7
|
+
* Maps EP MCP Server v1.4.0 structured error codes and generic HTTP/network
|
|
8
8
|
* errors into one of six broad categories used for logging and retry decisions:
|
|
9
9
|
*
|
|
10
10
|
* Returned categories (priority order):
|
|
@@ -55,7 +55,7 @@ export function classifyToolError(message) {
|
|
|
55
55
|
* covering the two shapes historically emitted by the EP MCP server.
|
|
56
56
|
*
|
|
57
57
|
* 1. **Uniform envelope** (all feeds as of
|
|
58
|
-
* `european-parliament-mcp-server@1.
|
|
58
|
+
* `european-parliament-mcp-server@1.4.0`) —
|
|
59
59
|
* `{status:"unavailable", items:[], generatedAt:"..."}` established by
|
|
60
60
|
* Hack23/European-Parliament-MCP-Server#301 and extended to
|
|
61
61
|
* `get_events_feed`/`get_procedures_feed` by
|