npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iflow-mcp/shlomiuziel_asher

v1.0.0

Published

Personal MCP server for financial data aggregation from Israeli banks

Readme

Asher - Personal Financial Data MCP Server

Get closer to your own data, on steroids!

A secure, local-first financial data aggregator for Israeli banks and credit card companies, built with TypeScript and powered by israeli-bank-scrapers. Asher helps you aggregate and analyze your financial transactions across multiple sources while keeping your data private and secure. Information is scraped and stored in a local, encrypted SQLite database.

demo

Features

  • MCP Server: Implements the Model Context Protocol for easy integration with MCP Hosts (e.g. Claude)
  • Extensive Integration: Supports all Israeli banks and credit card companies provided by israeli-bank-scrapers.
  • Local-First: Your financial data never leaves your machine
  • Encryption: Sensitive data is encrypted at rest
  • CLI: Easy setup and management via command line
  • TypeScript: Built with type safety in mind

Prerequisites

  • Node.js 18+
  • npm

Installation

  1. Clone the repository:

    git clone https://github.com/shlomiuziel/asher-mcp.git
    cd asher-mcp
  2. Install dependencies:

    npm install
  3. Build the project:

    npm run build
  4. Optional: Install the system wide asher cli command:

    npm install -g .
  5. Install tsx (TypeScript Execute) globally (required for Claude desktop integration):

    npm install -g tsx

Database Location

The database file is stored in the following location, depending on your OS:

  • macOS: ~/Library/Application Support/Asher/database.db
  • Linux: ~/.local/share/Asher/database.db
  • Windows: %APPDATA%/Asher/database.db

First Run & Configuration

  1. Prepare a credentials.json file with your provider credentials. See supported providers and credential fields here.

  2. Ingest your credentials:

    asher ingest-creds -f credentials.json
    • Use this command to update credentials as needed. Deletion can be done manually (see the scraper_credentials table).
    • You will be prompted to enter an encryption key for your database (for first-time setup, you'll re-enter to confirm).
  3. During setup, you will be prompted to:

    • Enable notifications (a test notification will help with permissions)
    • Optionally perform the first scrape (recommended to avoid latency and possible timeouts due to the large amount of data)
    • Configure Claude Desktop integration (can be directly launched with npm run configure:claude)

Usage

MCP Tools

Asher provides several tools for MCP hosts:

  • fetchTransactions: Fetch recent transactions and store them in the database.
  • describeTable: Get detailed information about a table (columns, indexes).
  • listTables: List all tables in the database.
  • getTableSchema: Get the schema for a specific table.
  • sqlQuery: Execute a safe SELECT query on allowed tables (prevents SQL injection and unauthorized access).
  • fetch-last-month-transactions: Fetch and summarize last month's transactions and expenses.

A sample prompt is included to help you generate a detailed monthly report.

Test your MCP server

You can run the MCP Inspector for local testing:

npm run start:mcp:inspector

Security

  • All sensitive data is encrypted at rest.
  • Bank credentials are stored securely inside the database using your encryption key.
  • The application follows the principle of least privilege (chmod 600 on the database file).
  • The encryption key is requested at runtime and never stored on disk.

Testing

Run all tests:

npm test

License

This project is licensed under the MIT License. See the LICENSE file for details.

⚠️ Important Disclaimer

PLEASE READ THIS DISCLAIMER CAREFULLY BEFORE USING THIS SOFTWARE.

This software is designed to help you analyze your financial data and make it accessible to MCP hosts. However, by using this software, you acknowledge and agree to the following:

  1. No Warranty: This software is provided "as is," without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement.

  2. Financial Data Security:

    • You are solely responsible for the security of your banking credentials and financial data
    • Never share your credentials or encryption keys with anyone
    • The developers are not responsible for any unauthorized access to your financial accounts
  3. Use at Your Own Risk:

    • The developers are not responsible for any financial losses, data loss, or other damages resulting from the use of this software
    • Always verify important financial information through official bank channels
    • The software may not be compatible with all banking institutions
  4. No Liability: In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.

  5. Third-Party Services: This software may integrate with third-party services. The developers are not responsible for the actions, content, or policies of these third parties.

By using this software, you acknowledge that you have read this disclaimer and agree to be bound by its terms.