fdic-mcp-server 1.4.5 → 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 +16 -16
- package/dist/index.js +1 -1
- package/dist/server.js +1 -1
- package/package.json +1 -1
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
|
|
36
|
-
- Hosted MCP endpoint
|
|
37
|
-
- Local docs home
|
|
38
|
-
- Getting started
|
|
39
|
-
- Prompting guide
|
|
40
|
-
- Usage examples
|
|
41
|
-
- Tool reference
|
|
42
|
-
- Client setup
|
|
43
|
-
- Troubleshooting and FAQ
|
|
44
|
-
- Compatibility matrix
|
|
45
|
-
- Technical specification
|
|
46
|
-
- Architecture
|
|
47
|
-
- Key decisions
|
|
48
|
-
- Release history
|
|
49
|
-
- Archived release notes
|
|
50
|
-
- Security policy
|
|
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.
|
|
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.
|
|
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;
|