fdic-mcp-server 1.4.6 → 1.4.7

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,22 +32,22 @@ The FDIC BankFind Suite API is public and useful, but it is not packaged for MCP
32
32
 
33
33
  ## Documentation
34
34
 
35
- - GitHub Pages docs entry point: <https://jflamb.github.io/fdic-mcp-server/>
36
- - Hosted MCP endpoint: <https://bankfind.jflamb.com/mcp>
37
- - Local docs home: [docs/index.md](./docs/index.md)
38
- - Getting started: [docs/getting-started.md](./docs/getting-started.md)
39
- - Prompting guide: [docs/prompting-guide.md](./docs/prompting-guide.md)
40
- - Usage examples: [docs/usage-examples.md](./docs/usage-examples.md)
41
- - Tool reference: [docs/tool-reference.md](./docs/tool-reference.md)
42
- - Client setup: [docs/clients.md](./docs/clients.md)
43
- - Troubleshooting and FAQ: [docs/troubleshooting.md](./docs/troubleshooting.md)
44
- - Compatibility matrix: [docs/compatibility-matrix.md](./docs/compatibility-matrix.md)
45
- - Technical specification: [docs/technical/specification.md](./docs/technical/specification.md)
46
- - Architecture: [docs/technical/architecture.md](./docs/technical/architecture.md)
47
- - Key decisions: [docs/technical/decisions.md](./docs/technical/decisions.md)
48
- - Release history: [GitHub Releases](https://github.com/jflamb/fdic-mcp-server/releases)
49
- - Archived release notes: [docs/release-notes/index.md](./docs/release-notes/index.md)
50
- - Security policy: [SECURITY.md](./SECURITY.md)
35
+ - [GitHub Pages docs entry point](https://jflamb.github.io/fdic-mcp-server/)
36
+ - [Hosted MCP endpoint](https://bankfind.jflamb.com/mcp)
37
+ - [Local docs home](./docs/index.md)
38
+ - [Getting started](./docs/getting-started.md)
39
+ - [Prompting guide](./docs/prompting-guide.md)
40
+ - [Usage examples](./docs/usage-examples.md)
41
+ - [Tool reference](./docs/tool-reference.md)
42
+ - [Client setup](./docs/clients.md)
43
+ - [Troubleshooting and FAQ](./docs/troubleshooting.md)
44
+ - [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)
48
+ - [Release history](https://github.com/jflamb/fdic-mcp-server/releases)
49
+ - [Archived release notes](./docs/release-notes/index.md)
50
+ - [Security policy](./SECURITY.md)
51
51
 
52
52
  ## Installation
53
53
 
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.4.6" : process.env.npm_package_version ?? "0.0.0-dev";
35
+ var VERSION = true ? "1.4.7" : 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_express = __toESM(require("express"));
47
47
 
48
48
  // src/constants.ts
49
- var VERSION = true ? "1.4.6" : process.env.npm_package_version ?? "0.0.0-dev";
49
+ var VERSION = true ? "1.4.7" : 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.4.6",
3
+ "version": "1.4.7",
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",