Skills-IL MCP Servers

April 21, 2026 ยท View on GitHub

A collection of MCP (Model Context Protocol) servers for Israeli data sources and APIs, maintained by the skills-il organization.

Browse all MCPs at agentskills.co.il/mcp.

Install any MCP

All MCPs are published to npm under the @skills-il scope and can be installed with one command:

npx -y @skills-il/<mcp-name>

For Claude Desktop, add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

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

Available MCPs

MCPnpmDescriptionAPIAuth
ben-gurion-flights-mcp@skills-il/ben-gurion-flights-mcpReal-time Ben Gurion Airport flight arrivals and departuresdata.gov.il flydataNone
boi-exchange-mcp@skills-il/boi-exchange-mcpBank of Israel official exchange rates (sha'ar yatzig) for 30+ currenciesBOI SDMX APINone
israel-amutot-mcp@skills-il/israel-amutot-mcpIsraeli non-profit registry: amutot, public benefit companies, foreign donations, and management certificatesdata.gov.ilNone
israel-clinical-trials-mcp@skills-il/israel-clinical-trials-mcpClinical trials at Israeli hospitals and research centersClinicalTrials.gov v2 APINone
israel-elections-mcp@skills-il/israel-elections-mcpIsraeli Knesset election resultsdata.gov.ilNone
israel-hiking-mcp@skills-il/israel-hiking-mcpIsrael hiking trails, POI search, route planning, and coordinate conversionIsrael Hiking MapNone
israel-medical-research-mcp@skills-il/israel-medical-research-mcpMedical research from Israeli institutions via PubMedPubMed E-utilitiesNone
israel-mental-health-mcp@skills-il/israel-mental-health-mcpMental health clinics, quality metrics, and psychiatric services across Israeldata.gov.il MOHNone
israel-nature-mcp@skills-il/israel-nature-mcpIsraeli nature observations and biodiversity dataiNaturalist + GBIFNone
israel-nutrition-mcp@skills-il/israel-nutrition-mcpIsraeli nutrition database (Tzameret) with 4,500+ foods and 74 nutrientsdata.gov.il TzameretNone
israel-railways-mcp@skills-il/israel-railways-mcpIsrael Railways train schedules, platforms, occupancy, and service updatesrail.co.ilNone
israel-vehicles-mcp@skills-il/israel-vehicles-mcpVehicle registry: license plate lookup, manufacturer/model search, roadworthiness status across 4.1M+ vehiclesdata.gov.ilNone
kolzchut-mcp@skills-il/kolzchut-mcpIsraeli rights and entitlements knowledge base (olim, tax, housing, health, disability)Kolzchut MediaWiki APINone
openbus-mcp@skills-il/openbus-mcpReal-time Israeli public transit data (bus arrivals, route performance, vehicle locations)Open Bus Stride APINone
supermarket-prices-mcp@skills-il/supermarket-prices-mcpIsraeli supermarket price comparison using government-mandated price transparency dataPrice Transparency Law XML feedsNone
tase-mcp@skills-il/tase-mcpTel Aviv Stock Exchange market data (securities, indices, Maya filings)TASE Data HubAPI Key
tel-aviv-city-mcp@skills-il/tel-aviv-city-mcpTel Aviv municipal data (parking, bike stations, road closures, city services)TLV ArcGIS RESTNone

Structure

Each subdirectory is a standalone MCP server with its own package.json, build system, and README. Each subdirectory publishes independently to npm as @skills-il/<subdir-name>.

Adding a New MCP

Use the create-mcp-admin skill in Claude Code to create and deploy a new MCP end-to-end.

Publishing

Releases are cut by pushing a git tag of the form <subdir>-v<semver>, for example israel-hiking-mcp-v1.0.1. The Publish MCP workflow (.github/workflows/publish.yml) parses the tag, validates that the package version matches, builds the package, and runs npm publish --provenance --access public against the @skills-il scope.

Required repo secret: NPM_TOKEN (granular token with read+write on the @skills-il scope).

To bump and release a single MCP:

cd <subdir>
# edit package.json: bump version
git add package.json
git commit -m "release: <subdir> vX.Y.Z"
git push
git tag <subdir>-v<X.Y.Z>
git push origin <subdir>-v<X.Y.Z>

Watch the run with gh run watch --repo skills-il/mcps --exit-status.

License

Each MCP has its own license. See the LICENSE file in each subdirectory.