- Home
- MCP servers
- Israeli Bank
Israeli Bank
- typescript
23
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mottibec-israeli-bank-mcp": {
"command": "node",
"args": [
"/path/to/israeli-bank-mcp/build/server.js"
]
}
}
}You run an MCP server that centralizes access to Israeli bank accounts and their transactions. This server makes it possible to list banks, securely manage credentials, fetch transactions across major banks and cards, and support two-factor authentication, all through the Model Context Protocol (MCP).
How to use
You connect an MCP client to the Israeli Bank MCP server to access banking data. Start by ensuring your MCP client is configured to point at a local or remote MCP endpoint that runs the Israeli Bank MCP server. A typical setup involves declaring an MCP server with a local or remote command path so the client can start the server process and communicate through MCP.
How to install
Prerequisites: Node.js and npm must be available on your system.
Install dependencies and build the server workflow as shown.
Steps to get started:
# Install dependencies
npm install
# Build the project
npm run build
Additional information
You can connect to MCP clients using a configuration entry that points to the built server script. The following is an example you can adapt for your MCP client configuration (replace the path with where your built server.js resides).
{
"mcpServers": {
"israeli_bank_mcp": {
"command": "node",
"args": [
"/path/to/israeli-bank-mcp/build/server.js"
]
}
}
}
Available tools
list_banks
List available Israeli banks and their required credentials so you know what to configure for each bank.
fetch_transactions
Fetch transactions from a selected bank within the allowed date range and credentials.
two_factor_auth
Provide two-factor authentication support for banks that require it, enabling secure access.