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
| MCP | npm | Description | API | Auth |
|---|---|---|---|---|
| ben-gurion-flights-mcp | @skills-il/ben-gurion-flights-mcp | Real-time Ben Gurion Airport flight arrivals and departures | data.gov.il flydata | None |
| boi-exchange-mcp | @skills-il/boi-exchange-mcp | Bank of Israel official exchange rates (sha'ar yatzig) for 30+ currencies | BOI SDMX API | None |
| israel-amutot-mcp | @skills-il/israel-amutot-mcp | Israeli non-profit registry: amutot, public benefit companies, foreign donations, and management certificates | data.gov.il | None |
| israel-clinical-trials-mcp | @skills-il/israel-clinical-trials-mcp | Clinical trials at Israeli hospitals and research centers | ClinicalTrials.gov v2 API | None |
| israel-elections-mcp | @skills-il/israel-elections-mcp | Israeli Knesset election results | data.gov.il | None |
| israel-hiking-mcp | @skills-il/israel-hiking-mcp | Israel hiking trails, POI search, route planning, and coordinate conversion | Israel Hiking Map | None |
| israel-medical-research-mcp | @skills-il/israel-medical-research-mcp | Medical research from Israeli institutions via PubMed | PubMed E-utilities | None |
| israel-mental-health-mcp | @skills-il/israel-mental-health-mcp | Mental health clinics, quality metrics, and psychiatric services across Israel | data.gov.il MOH | None |
| israel-nature-mcp | @skills-il/israel-nature-mcp | Israeli nature observations and biodiversity data | iNaturalist + GBIF | None |
| israel-nutrition-mcp | @skills-il/israel-nutrition-mcp | Israeli nutrition database (Tzameret) with 4,500+ foods and 74 nutrients | data.gov.il Tzameret | None |
| israel-railways-mcp | @skills-il/israel-railways-mcp | Israel Railways train schedules, platforms, occupancy, and service updates | rail.co.il | None |
| israel-vehicles-mcp | @skills-il/israel-vehicles-mcp | Vehicle registry: license plate lookup, manufacturer/model search, roadworthiness status across 4.1M+ vehicles | data.gov.il | None |
| kolzchut-mcp | @skills-il/kolzchut-mcp | Israeli rights and entitlements knowledge base (olim, tax, housing, health, disability) | Kolzchut MediaWiki API | None |
| openbus-mcp | @skills-il/openbus-mcp | Real-time Israeli public transit data (bus arrivals, route performance, vehicle locations) | Open Bus Stride API | None |
| supermarket-prices-mcp | @skills-il/supermarket-prices-mcp | Israeli supermarket price comparison using government-mandated price transparency data | Price Transparency Law XML feeds | None |
| tase-mcp | @skills-il/tase-mcp | Tel Aviv Stock Exchange market data (securities, indices, Maya filings) | TASE Data Hub | API Key |
| tel-aviv-city-mcp | @skills-il/tel-aviv-city-mcp | Tel Aviv municipal data (parking, bike stations, road closures, city services) | TLV ArcGIS REST | None |
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.