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/israel-hiking-mcp

v1.0.1

Published

MCP server wrapping the Israel Hiking Map APIs (israelhiking.osm.org.il) for route planning, POI search, and trail discovery in Israel

Downloads

220

Readme

israel-hiking-mcp

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

An MCP (Model Context Protocol) server that wraps the Israel Hiking Map APIs, providing route planning, POI search, trail discovery, and coordinate conversion for Israel.

The Israel Hiking Map is an open-source project built on OpenStreetMap data, maintained by the Israeli hiking community.

Install

npx -y @skills-il/israel-hiking-mcp

Claude Desktop

Add to claude_desktop_config.json:

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

Claude Code

claude mcp add israel-hiking npx -- -y @skills-il/israel-hiking-mcp

Tools

search_pois

Search for points of interest in Israel by name or keyword. Returns locations of hiking trails, water sources, viewpoints, campgrounds, historical sites, and more from OpenStreetMap and Wikidata. Supports Hebrew and English search terms.

Parameters:

  • query (string, required) - Search term in Hebrew or English (e.g., "Ein Gedi", "water", "viewpoint")
  • language (string, optional) - Language for results: "he" (default) or "en"

plan_route

Plan a route between two geographic points in Israel. Returns distance, elevation profile (ascent, descent, min/max elevation), and road type breakdown.

Parameters:

  • from_lat (number, required) - Start point latitude (WGS84)
  • from_lng (number, required) - Start point longitude (WGS84)
  • to_lat (number, required) - End point latitude (WGS84)
  • to_lng (number, required) - End point longitude (WGS84)
  • route_type (string, optional) - Routing profile: "Hike" (default), "Bike", "4WD", or "None"

find_trails

Search for hiking trails and routes near a given location in Israel. Filters results to show trail-related POIs.

Parameters:

  • area (string, required) - Area or place name (e.g., "Galilee", "Negev", "Golan")
  • language (string, optional) - Language for results: "he" (default) or "en"

get_poi_details

Get detailed information about a specific point of interest. Requires the source and ID from a previous search result. Returns multilingual names, location, elevation, category, Wikipedia links, images, and more.

Parameters:

  • source (string, required) - Data source: "OSM" or "Wikidata"
  • id (string, required) - Unique identifier within the source (e.g., "node_29090735", "Q1218")

convert_coordinates

Convert coordinates between Israel Transverse Mercator (ITM) and WGS84 coordinate systems. ITM is the official Israeli coordinate system used in local maps and surveys. WGS84 is the global GPS standard.

Parameters:

  • direction (string, required) - "itm_to_wgs84" or "wgs84_to_itm"
  • x (number, required) - For ITM to WGS84: Easting. For WGS84 to ITM: Latitude.
  • y (number, required) - For ITM to WGS84: Northing. For WGS84 to ITM: Longitude.

Local development

npm install
npm run build

See "## Install" above for the production install command and Claude Desktop / Claude Code configuration.

API Source

All data comes from the Israel Hiking Map public API, which is built on OpenStreetMap data. The server implements client-side rate limiting (minimum 500ms between requests) and request timeouts to be respectful to the open-source infrastructure.

License

MIT