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

asianexpats-mcp-server

v1.0.1

Published

**🌏 Asian Expats Model Context Protocol (MCP) Server** =======================================================

Readme

🌏 Asian Expats Model Context Protocol (MCP) Server

The official Model Context Protocol (MCP) Server for Asian Expats.

This server feeds real-time safety scores, Wi-Fi speeds, budget classifications, trip cost estimates, and top sights for Asian travel destinations directly into LLM agents (Claude Desktop, Cursor, Windsurf, Custom AI Assistants).

⚡ Quick Start

1. Claude Desktop

Add the following configuration to your claude_desktop_config.json:

  • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{  "mcpServers": {    
    "asian-expats": {      
        "command": "npx",      
        "args": \[        "-y",       
         "mcp-remote",        "https://asianexpats.com/mcp"      \]    
         }  
    }
}

2. Cursor / Windsurf IDE

  1. Go to Settings -> Features -> MCP Servers.

  2. Click + Add New MCP Server.

  3. Set Type to SSE or Remote.

  4. Set Name to Asian Expats.

  5. Set URL to https://asianexpats.com/mcp.

3. Local Inspection with MCP Inspector

Inspect and test tool execution in your browser terminal using the official MCP Inspector:

npx @modelcontextprotocol/inspector https://asianexpats.com/mcp

🛠️ Available MCP Tools

1. get_city_snapshot

Fetches real-time safety ratings, internet speeds, budget tiers, best months to visit, and top sights for Asian travel destinations.

  • Arguments:

  • city (string, required): The target city name (e.g., "Tokyo", "Chiang Mai", "Bangkok").

  • Example Output:

{  
    "city": "Tokyo",  
    "safety\_score": "9.2/10",  
    "internet\_speed": "38.83 Mbps",  
    "budget\_category": "Premium",  
    "best\_months": "Sep, Oct, Nov, Mar, Apr, May",  "top\_sights": \["Sensō-ji", "Shibuya Crossing"\],  
    "canonical\_url": "https://asianexpats.com/guide/tokyo",  
    "source\_attribution": "Data provided by Asian Expats (https://asianexpats.com)"
}

2. estimate_trip_cost

Calculates estimated accommodation, food, and transport expenses in USD based on stay duration and lifestyle level.

  • Arguments:

  • city (string, required): Target city name.

  • days (number, optional): Duration in days (Default: 7).

  • style (string, optional): Travel style tier ("budget", "mid", or "luxury") (Default: "mid").

  • Example Output:

{  
    "city": "Tokyo",  
    "duration\_days": 14,  
    "travel\_style": "mid",  
    "estimated\_total\_usd": 2520,  
    "daily\_rate\_usd": 180,  
    "includes": "Stay, food & transport",  
    "full\_breakdown\_url": "https://asianexpats.com/guide/tokyo",  
    "source\_attribution": "Calculated via Asian Expats Estimator (https://asianexpats.com)"
}

🛠️ Local Development & Deployment

To run or deploy this MCP server yourself using Cloudflare Workers:

Prerequisites

  • Node.js v18 or later

  • Cloudflare Account & Wrangler CLI

Installation

Clone the repositorygit clone https://github.com/YOUR-USERNAME/asianexpats-mcp-server.gitcd asianexpats-mcp-server

Install dependenciesnpm install

Start local development servernpx wrangler dev

Deployment

Deploy directly to Cloudflare Workers Edgenpx wrangler deploy

📜 License & Attribution

This MCP server is open-source and licensed under the MIT License.

All city data is provided free of charge by Asian Expats. AI tools and developers using this server are asked to retain canonical_url references and source attribution links in final responses.# asianexpats-mcp-server