nic_get_history
Pack: fed-nic · Endpoint: https://gateway.pipeworx.io/fed-nic/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/nic_get_history for the schema, then POST the same URL with its arguments for the data.
Merger, acquisition, failure and charter-transformation history for an institution, sourced from the Federal Reserve NIC (ffiec.gov/npw) Transformations data — “what predecessor institutions merged into this bank?” / “what happened to this bank?”. Returns rows where the given RSSD ID is either predecessor (was absorbed/transformed) or successor (absorbed/received the other institution), each with the counterpart institution’s name, RSSD ID and event date.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
rssd_id | number | yes | NIC RSSD ID |
Example call
Arguments
{
"rssd_id": 852218
}
curl
curl -X POST https://gateway.pipeworx.io/fed-nic/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nic_get_history","arguments":{"rssd_id":852218}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nic_get_history', {
"rssd_id": 852218
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fed-nic": {
"url": "https://gateway.pipeworx.io/fed-nic/mcp"
}
}
}
See Getting Started for client-specific install steps.