fdic-mcp-server 1.1.2 → 1.2.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/README.md +15 -2
- package/dist/index.js +31712 -148
- package/dist/server.js +31716 -148
- package/package.json +15 -3
package/README.md
CHANGED
|
@@ -45,7 +45,8 @@ The FDIC BankFind Suite API is public and useful, but it is not packaged for MCP
|
|
|
45
45
|
- Technical specification: [docs/technical/specification.md](./docs/technical/specification.md)
|
|
46
46
|
- Architecture: [docs/technical/architecture.md](./docs/technical/architecture.md)
|
|
47
47
|
- Key decisions: [docs/technical/decisions.md](./docs/technical/decisions.md)
|
|
48
|
-
- Release
|
|
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)
|
|
49
50
|
- Security policy: [SECURITY.md](./SECURITY.md)
|
|
50
51
|
|
|
51
52
|
## Installation
|
|
@@ -108,7 +109,17 @@ HTTP transport:
|
|
|
108
109
|
TRANSPORT=http PORT=3000 node dist/index.js
|
|
109
110
|
```
|
|
110
111
|
|
|
111
|
-
The HTTP MCP endpoint is `http://
|
|
112
|
+
The HTTP MCP endpoint is `http://127.0.0.1:3000/mcp` by default.
|
|
113
|
+
|
|
114
|
+
Notes:
|
|
115
|
+
|
|
116
|
+
- Local HTTP runs bind to `127.0.0.1` by default. Set `HOST` if you intentionally want a different bind address.
|
|
117
|
+
- Browser-origin requests are checked against `ALLOWED_ORIGINS`. If unset, the server allows the local defaults for `localhost` and `127.0.0.1` on the configured port, plus non-browser requests with no `Origin` header.
|
|
118
|
+
- The HTTP transport is session-based. Clients initialize once, then reuse `MCP-Session-Id` on later POST, GET, and DELETE requests.
|
|
119
|
+
|
|
120
|
+
Container builds use `PORT=8080` by default for Cloud Run compatibility.
|
|
121
|
+
|
|
122
|
+
Set `FDIC_MAX_RESPONSE_BYTES` to override the upstream FDIC response-size guard. The default is `5242880` bytes (5 MiB).
|
|
112
123
|
|
|
113
124
|
### Minimal MCP Configuration
|
|
114
125
|
|
|
@@ -231,6 +242,8 @@ npm test
|
|
|
231
242
|
npm run build
|
|
232
243
|
```
|
|
233
244
|
|
|
245
|
+
Releases are published automatically from validated `main` commits by `semantic-release`. Do not manually edit the package version or create release tags by hand. GitHub Releases is the authoritative release record for published versions.
|
|
246
|
+
|
|
234
247
|
## License
|
|
235
248
|
|
|
236
249
|
This project is licensed under the MIT License.
|