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

@itsaydrian/waymark-mcp-server

v0.1.8

Published

Model Context Protocol server for Waymark travel itinerary management

Downloads

130

Readme

Waymark MCP Server

Model Context Protocol (MCP) server for Waymark travel itinerary management.

Quick Start (OpenClaw / npx)

The easiest way to use this server is via npx (requires Node.js 18+):

npx @itsaydrian/waymark-mcp-server

Or configure it in your MCP client (like OpenClaw or Claude Desktop):

{
  "mcpServers": {
    "waymark": {
      "command": "npx",
      "args": ["-y", "@itsaydrian/waymark-mcp-server"],
      "env": {
        "WAYMARK_BASE_URL": "https://waymark.itsaydrian.com",
        "WAYMARK_ADMIN_TOKEN": "your-admin-token"
      }
    }
  }
}

Overview

This MCP server exposes Waymark's trip and POI management APIs as structured tools for Claude agents and other MCP clients. It provides:

  • Trip Management: Create, read, update, and delete travel itineraries
  • Global POI Management: Manage Points of Interest that can be reused across trips
  • Assignment Management: Assign POIs to specific days and times in trip itineraries

Development Setup

If you're contributing or want to run from source:

cd packages/mcp-server
bun install
bun run build

Configuration

Set the following environment variables:

WAYMARK_ADMIN_TOKEN=your-waymark-admin-token
WAYMARK_BASE_URL=https://waymark.itsaydrian.com  # Optional, defaults to production

Usage

Stdio Transport (Claude Desktop)

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "waymark": {
      "command": "bun",
      "args": ["/path/to/waymark/packages/mcp-server/src/transports/stdio.ts"],
      "env": {
        "WAYMARK_ADMIN_TOKEN": "your-admin-token"
      }
    }
  }
}

HTTP/SSE Transport (Remote Access)

Run the HTTP server:

bun src/transports/http.ts

Or with a custom port:

PORT=8080 bun src/transports/http.ts

Endpoints:

  • GET /sse - SSE endpoint for server-to-client messages
  • POST /messages?sessionId=<id> - Client-to-server message endpoint
  • GET /health - Health check

Available Tools

Trip Management

  • list_trips - Get a summary list of all trips
  • get_trip - Get full details of a trip by ID
  • create_trip - Create a new itinerary (PIN auto-hashed if provided)
  • update_trip - Update an existing trip
  • delete_trip - Delete a trip by ID

POI Management

  • list_pois - Get all global POIs
  • get_poi - Get details of a specific POI
  • create_poi - Create a new global POI
  • update_poi - Update an existing POI
  • delete_poi - Delete a POI
  • search_pois - Search POIs by city, category, or name

Assignment Management

  • list_assignments - List POI assignments for a trip/day
  • create_assignment - Assign a POI to a specific day
  • update_assignment - Modify an assignment (time, day, notes)
  • delete_assignment - Remove an assignment from a trip

Example Usage in Claude

Once configured, you can ask Claude:

List all my trips
Create a new trip to Paris from 2026-06-01 to 2026-06-07
Find restaurants in Rome
Assign the Colosseum to day 2 of my Italy trip at 10:00 AM

Architecture

The server uses the Waymark admin API for data access, providing:

  • Type safety - Zod schema validation for all inputs/outputs
  • Discoverability - Tools expose their schemas to MCP clients
  • Error handling - Structured error responses

Development

# Type check
bun run typecheck

# Run stdio transport for testing
bun run dev:stdio

# Run HTTP server
bun run dev:http

License

Private - Part of the Waymark project