fdic-mcp-server 1.8.0 → 1.8.1

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
@@ -32,6 +32,8 @@ The FDIC BankFind Suite API is public and useful, but it is not packaged for MCP
32
32
 
33
33
  ## Documentation
34
34
 
35
+ Public user docs:
36
+
35
37
  - [GitHub Pages docs entry point](https://jflamb.github.io/fdic-mcp-server/)
36
38
  - [Hosted MCP endpoint](https://bankfind.jflamb.com/mcp)
37
39
  - [Local docs home](./docs/index.md)
@@ -42,9 +44,18 @@ The FDIC BankFind Suite API is public and useful, but it is not packaged for MCP
42
44
  - [Client setup](./docs/clients.md)
43
45
  - [Troubleshooting and FAQ](./docs/troubleshooting.md)
44
46
  - [Compatibility matrix](./docs/compatibility-matrix.md)
45
- - [Technical specification](./docs/technical/specification.md)
46
- - [Architecture](./docs/technical/architecture.md)
47
- - [Key decisions](./docs/technical/decisions.md)
47
+
48
+ Repo reference docs:
49
+
50
+ - [Reference home](./reference/README.md)
51
+ - [Technical specification](./reference/specification.md)
52
+ - [Architecture](./reference/architecture.md)
53
+ - [Key decisions](./reference/decisions.md)
54
+ - [Cloud Run deployment](./reference/cloud-run-deployment.md)
55
+ - [Plans and design notes](./reference/plans/README.md)
56
+
57
+ Project and release info:
58
+
48
59
  - [Release history](https://github.com/jflamb/fdic-mcp-server/releases)
49
60
  - [Archived release notes](./docs/release-notes/index.md)
50
61
  - [Security policy](./SECURITY.md)
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.8.0" : process.env.npm_package_version ?? "0.0.0-dev";
35
+ var VERSION = true ? "1.8.1" : 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;
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.8.0" : process.env.npm_package_version ?? "0.0.0-dev";
49
+ var VERSION = true ? "1.8.1" : 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fdic-mcp-server",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
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",