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

@skills-il/boi-exchange-mcp

v1.0.1

Published

MCP server for Bank of Israel official exchange rates via the BOI SDMX API

Readme

BOI Exchange MCP

Part of skills-il — browse all Israeli MCP servers at agentskills.co.il/mcp.

MCP server for official Bank of Israel exchange rates. Access daily representative rates (sha'ar yatzig) for 30+ currencies against the Israeli New Shekel (ILS) via the official BOI SDMX API.

No API key required.

Install

npx -y @skills-il/boi-exchange-mcp

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "boi-exchange": {
      "command": "npx",
      "args": ["-y", "@skills-il/boi-exchange-mcp"]
    }
  }
}

Claude Code

claude mcp add boi-exchange npx -- -y @skills-il/boi-exchange-mcp

Tools

| Tool | Description | |------|-------------| | get_exchange_rate | Get the latest representative exchange rate for a currency against ILS | | get_historical_rates | Get daily rates over a date range | | list_currencies | List all supported currency codes | | get_rate_change | Calculate rate change (absolute and percentage) between two dates | | convert_currency | Convert an amount between ILS and another currency using the latest official rate |

Local development

Claude Desktop / Claude Code

Add to your MCP config:

{
  "mcpServers": {
    "boi-exchange": {
      "command": "npx",
      "args": ["-y", "boi-exchange-mcp"]
    }
  }
}

From source

git clone https://github.com/skills-il/mcps.git
cd mcps/boi-exchange-mcp/boi-exchange-mcp
npm install
npm run build

Then add to your MCP config:

{
  "mcpServers": {
    "boi-exchange": {
      "command": "npx", "args": ["-y", "@skills-il/boi-exchange-mcp"]
    }
  }
}

API Reference

This MCP wraps the Bank of Israel SDMX series database:

  • Base URL: https://edge.boi.gov.il/FusionEdgeServer/sdmx/v2/data/dataflow/BOI.STATISTICS/EXR/1.0
  • Data browser: https://edge.boi.gov.il/FusionDataBrowser/?df=BOI.STATISTICS:EXR(1.0)
  • Documentation: https://www.boi.org.il/en/economic-roles/statistics/
  • Auth: None (public API)
  • Rate publishing schedule: Sunday through Thursday (Israeli business days)

Examples

"What's the dollar rate today?" Calls get_exchange_rate with currency: "USD".

"Show me EUR/ILS for the last month" Calls get_historical_rates with currency: "EUR", date range for the past 30 days.

"Convert 1000 USD to shekels" Calls convert_currency with amount: 1000, fromCurrency: "USD", toCurrency: "ILS".

"How much did the dollar change this year?" Calls get_rate_change with currency: "USD", from Jan 1 to today.

License

MIT