fdic-mcp-server 1.18.0 → 1.19.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/dist/index.js CHANGED
@@ -32,7 +32,7 @@ var import_types = require("@modelcontextprotocol/sdk/types.js");
32
32
  var import_express2 = __toESM(require("express"));
33
33
 
34
34
  // src/constants.ts
35
- var VERSION = true ? "1.18.0" : process.env.npm_package_version ?? "0.0.0-dev";
35
+ var VERSION = true ? "1.19.0" : 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;
@@ -38064,7 +38064,7 @@ function formatHoldingCompanyProfileText(result) {
38064
38064
  }
38065
38065
  var HoldingCompanyProfileSchema = import_zod18.z.object({
38066
38066
  hc_name: import_zod18.z.string().optional().describe(
38067
- 'Holding company name (e.g., "JPMORGAN CHASE & CO"). Uses NAMHCR field.'
38067
+ 'Holding company name (e.g., "JPMORGAN CHASE & CO"). Uses NAMEHCR field.'
38068
38068
  ),
38069
38069
  cert: import_zod18.z.number().int().positive().optional().describe(
38070
38070
  "CERT of any subsidiary \u2014 looks up its holding company, then profiles the entire HC."
package/dist/server.js CHANGED
@@ -46,7 +46,7 @@ var import_types = require("@modelcontextprotocol/sdk/types.js");
46
46
  var import_express2 = __toESM(require("express"));
47
47
 
48
48
  // src/constants.ts
49
- var VERSION = true ? "1.18.0" : process.env.npm_package_version ?? "0.0.0-dev";
49
+ var VERSION = true ? "1.19.0" : 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;
@@ -38078,7 +38078,7 @@ function formatHoldingCompanyProfileText(result) {
38078
38078
  }
38079
38079
  var HoldingCompanyProfileSchema = import_zod18.z.object({
38080
38080
  hc_name: import_zod18.z.string().optional().describe(
38081
- 'Holding company name (e.g., "JPMORGAN CHASE & CO"). Uses NAMHCR field.'
38081
+ 'Holding company name (e.g., "JPMORGAN CHASE & CO"). Uses NAMEHCR field.'
38082
38082
  ),
38083
38083
  cert: import_zod18.z.number().int().positive().optional().describe(
38084
38084
  "CERT of any subsidiary \u2014 looks up its holding company, then profiles the entire HC."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fdic-mcp-server",
3
- "version": "1.18.0",
3
+ "version": "1.19.0",
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",