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

kartverket-mcp

v0.1.0

Published

MCP server for Kartverket's open APIs: Norwegian addresses, place names, and elevation data.

Readme

kartverket-mcp

An MCP server that exposes Kartverket's open geographic data to Claude (and any other MCP client).

Kartverket is Norway's national mapping authority. It publishes addresses, place names, cadastre data, and elevation models under an open licence (NLOD / CC BY 4.0). This server wraps four of those endpoints as MCP tools, so an LLM can look up Norwegian addresses, reverse-geocode a point, search the official place-name registry, or query elevation from the national 1 m DTM — all without an API key.

Install

Add to your Claude Desktop config (%APPDATA%\Claude\claude_desktop_config.json on Windows, ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

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

Restart Claude Desktop. No credentials needed.

Tools

search_address

Free-text address search against ws.geonorge.no/adresser/v1/sok.

query: "Karl Johans gate 1, Oslo"
→ address, postcode, postal_area, municipality, cadastre (gnr/bnr), lat, lon

address_at_point

Reverse geocoding. Finds addresses within a radius of a lat/lon.

lat: 59.91, lon: 10.75, radius: 100
→ up to N nearest addresses, each with distance_m

search_placename

Searches Sentralt stedsnavnregister (SSR) — farms, mountains, lakes, islands, urban areas. Not street addresses.

query: "Galdhøpiggen"
→ name, type (e.g. Fjell, By, Øy), counties, municipalities, coordinates

elevation_at_point

Ground elevation in metres above sea level, from the national 1 m DTM.

lat: 61.636, lon: 8.312
→ elevation_m, terrain (ÅpentOmråde / Skog / Vann / …), source (dtm1)

Example questions Claude can now answer

  • "What's the postcode of Karl Johans gate 1 in Oslo?"
  • "What's the street address nearest to 59.9139° N, 10.7522° E?"
  • "How high is Galdhøpiggen?" (placename search → elevation lookup)
  • "Find every address within 50 m of the Oslo Opera House coordinates."

Development

git clone https://github.com/hellosverre/kartverket-mcp
cd kartverket-mcp
npm install
npm run build
npm start

For local iteration, npm run dev runs the server with tsx (no build step).

To test against your local checkout, point Claude Desktop at the built file:

{
  "mcpServers": {
    "kartverket": {
      "command": "node",
      "args": ["/absolute/path/to/kartverket-mcp/dist/index.js"]
    }
  }
}

Data & attribution

All data comes from Kartverket via ws.geonorge.no. It's published under Norsk lisens for offentlige data (NLOD) 2.0 or CC BY 4.0 depending on the dataset. When you use this data, you're expected to credit Kartverket.

This project is not affiliated with Kartverket.

License

MIT. See LICENSE.