fdic-mcp-server 1.2.7 → 1.2.8
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/dist/index.js +6 -2
- package/dist/server.js +6 -2
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -32,7 +32,7 @@ var import_types = require("@modelcontextprotocol/sdk/types.js");
|
|
|
32
32
|
var import_express = __toESM(require("express"));
|
|
33
33
|
|
|
34
34
|
// src/constants.ts
|
|
35
|
-
var VERSION = true ? "1.2.
|
|
35
|
+
var VERSION = true ? "1.2.8" : process.env.npm_package_version ?? "0.0.0-dev";
|
|
36
36
|
var FDIC_API_BASE_URL = "https://banks.data.fdic.gov/api";
|
|
37
37
|
var CHARACTER_LIMIT = 5e4;
|
|
38
38
|
var DEFAULT_FDIC_MAX_RESPONSE_BYTES = 5 * 1024 * 1024;
|
|
@@ -33218,10 +33218,14 @@ Returns concise comparison text plus structured deltas, derived metrics, and ins
|
|
|
33218
33218
|
insightComparisons: sortedComparisons,
|
|
33219
33219
|
limitCount: ranked.length
|
|
33220
33220
|
});
|
|
33221
|
+
const textOutput = {
|
|
33222
|
+
...output,
|
|
33223
|
+
insights: buildTopLevelInsights(ranked)
|
|
33224
|
+
};
|
|
33221
33225
|
const text = truncateIfNeeded(
|
|
33222
33226
|
[
|
|
33223
33227
|
...warnings.map((warning) => `Warning: ${warning}`),
|
|
33224
|
-
formatComparisonText(
|
|
33228
|
+
formatComparisonText(textOutput)
|
|
33225
33229
|
].filter((value) => value !== null).join("\n\n"),
|
|
33226
33230
|
CHARACTER_LIMIT,
|
|
33227
33231
|
"Reduce the number of certs, narrow institution_filters, request fewer fields, or shorten the date range."
|
package/dist/server.js
CHANGED
|
@@ -46,7 +46,7 @@ var import_types = require("@modelcontextprotocol/sdk/types.js");
|
|
|
46
46
|
var import_express = __toESM(require("express"));
|
|
47
47
|
|
|
48
48
|
// src/constants.ts
|
|
49
|
-
var VERSION = true ? "1.2.
|
|
49
|
+
var VERSION = true ? "1.2.8" : process.env.npm_package_version ?? "0.0.0-dev";
|
|
50
50
|
var FDIC_API_BASE_URL = "https://banks.data.fdic.gov/api";
|
|
51
51
|
var CHARACTER_LIMIT = 5e4;
|
|
52
52
|
var DEFAULT_FDIC_MAX_RESPONSE_BYTES = 5 * 1024 * 1024;
|
|
@@ -33232,10 +33232,14 @@ Returns concise comparison text plus structured deltas, derived metrics, and ins
|
|
|
33232
33232
|
insightComparisons: sortedComparisons,
|
|
33233
33233
|
limitCount: ranked.length
|
|
33234
33234
|
});
|
|
33235
|
+
const textOutput = {
|
|
33236
|
+
...output,
|
|
33237
|
+
insights: buildTopLevelInsights(ranked)
|
|
33238
|
+
};
|
|
33235
33239
|
const text = truncateIfNeeded(
|
|
33236
33240
|
[
|
|
33237
33241
|
...warnings.map((warning) => `Warning: ${warning}`),
|
|
33238
|
-
formatComparisonText(
|
|
33242
|
+
formatComparisonText(textOutput)
|
|
33239
33243
|
].filter((value) => value !== null).join("\n\n"),
|
|
33240
33244
|
CHARACTER_LIMIT,
|
|
33241
33245
|
"Reduce the number of certs, narrow institution_filters, request fewer fields, or shorten the date range."
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fdic-mcp-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"description": "MCP server for the FDIC BankFind Suite API",
|
|
5
5
|
"mcpName": "io.github.jflamb/fdic-mcp-server",
|
|
6
6
|
"main": "dist/server.js",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"pack:check": "npm pack --dry-run",
|
|
26
26
|
"registry:sync": "node scripts/sync-server-json.mjs",
|
|
27
27
|
"fdic-schema:sync": "node scripts/sync-fdic-endpoint-metadata.mjs",
|
|
28
|
+
"issues:batch": "node scripts/prepare-issue-batches.mjs",
|
|
28
29
|
"start": "node dist/index.js",
|
|
29
30
|
"dev": "tsx src/cli.ts",
|
|
30
31
|
"deploy:local": "bash scripts/deploy-local.sh"
|