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

chargenow-mcp

v1.0.2

Published

MCP server for finding ChargeNow EV charging points.

Readme

ChargeNow MCP Server

A Model Context Protocol (MCP) server that provides EV charging station information using the ChargeNow API. This server allows AI assistants supporting the MCP protocol (such as Claude) to search for charging stations near a specified address.

Features

  • Find available EV charging stations near a specified address
  • Get real-time availability status of charging points
  • View detailed information about charging stations including:
    • Distance from the search location
    • Address and operator information
    • Available connector types and power levels
    • Payment methods supported
    • Opening hours information

Installation

  1. Clone the repository
  2. Install dependencies:
npm install
  1. Build the project:
npm run build

Configuration

The server requires an API key for geocoding services. You can configure it in one of the following ways:

1. Environment Variable

Set the GEOCODE_API_KEY environment variable:

export GEOCODE_API_KEY="your_api_key_here"

2. MCP Server Configuration

When using with an MCP client (like Claude), configure it in your MCP config:

{
  "mcpServers": {
    "chargenow": {
      "command": "node",
      "args": [
        "/path/to/chargenow-mcp/build/index.js"
      ],
      "config": {
        "geocodeApiKey": "your_api_key_here"
      }
    }
  }
}

Replace /path/to/chargenow-mcp/build/index.js with the absolute path to the built index.js file.

Claude Desktop Configuration

To use this server with Claude Desktop, add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "chargenow": {
      "command": "node",
      "args": [
        "/path/to/chargenow-mcp/build/index.js"
      ],
      "config": {
        "geocodeApiKey": "your_api_key_here"
      }
    }
  }
}

The file should be located at:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Usage

Once configured, you can use the charging station search functionality in Claude by asking questions like:

  • "Find EV charging stations near Brandenburg Gate, Berlin"
  • "Are there any available charging points in Munich city center?"
  • "Show me charging stations near Bautzener Str Berlin"

Available Tools

This MCP server provides the following tool:

find_available_chargepoints

Finds available electric vehicle charge points near a given address.

Parameters:

  • address: The street address and city (e.g., "Bautzener Str Berlin")

Example response:

Charging Stations near Bautzener Str Berlin:

Summary:
• 5 charge points AVAILABLE
• 2 charge points in use (CHARGING)
• 1 charge points OFFLINE

Detailed Locations:

📍 Charging Station Berlin Mitte (0.89 km)
   Address: Brückenstraße 5, 10179 Berlin
   Operator: Allego
   Payment: Credit Card, RFID
   Hours: 24/7
   Connectors: CCS (150kW), CHAdeMO (50kW), Type 2 (22kW)
   Status:
   • 2 available points
   • 1 points in use
   Last updated: 14:32:45

[...additional charging stations...]

API Key Information

This server uses geocode.maps.co for geocoding services. You need to obtain an API key from their website to use this server.

License

ISC