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

mcp-smoobu

v0.1.0

Published

MCP server for Smoobu property management API - manage reservations, properties, guests, rates, and messages

Readme

mcp-smoobu

npm version License: MIT

MCP server for the Smoobu property management API. Provides 27 tools (16 read + 11 write) to manage reservations, properties, guests, rates, and messages through the Model Context Protocol.

Features

  • User — Account information
  • Properties — List and inspect apartments
  • Reservations — Create, update, cancel, list, and check availability
  • Guests — Create, update, list guest profiles
  • Messages — Send messages, list threads and conversation history
  • Rates — Read and update pricing rates
  • Addons — List available add-ons
  • Placeholders — Custom and reservation placeholders
  • Check-in — Online check-in data
  • Price Elements — Create, update, delete price elements on reservations

Quick Start

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "smoobu": {
      "command": "npx",
      "args": ["-y", "mcp-smoobu"],
      "env": {
        "SMOOBU_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add smoobu -- npx -y mcp-smoobu

Then set the environment variable:

export SMOOBU_API_KEY="your-api-key"

Authentication

Set the SMOOBU_API_KEY environment variable with your Smoobu API key. You can find it in your Smoobu Settings.

Tools

Read Tools (16)

| Tool | Description | |------|-------------| | get_user | Get current user/account info | | list_apartments | List all apartments | | get_apartment | Get apartment details | | list_reservations | List reservations with filters | | get_reservation | Get reservation details | | get_reservation_price_elements | Get price elements for a reservation | | get_reservation_placeholders | Get placeholder values for a reservation | | list_guests | List all guests | | get_guest | Get guest details | | list_reservation_messages | List messages for a reservation | | list_threads | List message threads | | list_rates | List rates for an apartment | | list_addons | List available add-ons | | list_custom_placeholders | List custom placeholders | | get_custom_placeholder | Get a custom placeholder | | list_online_check_ins | List online check-ins |

Write Tools (11)

| Tool | Description | |------|-------------| | check_apartment_availability | Check apartment availability for dates | | send_reservation_message | Send a message for a reservation | | create_guest | Create a new guest | | update_guest | Update guest details | | create_reservation | Create a new reservation | | update_reservation | Update a reservation | | cancel_reservation | Cancel a reservation | | create_price_element | Add a price element to a reservation | | update_price_element | Update a price element | | delete_price_element | Delete a price element | | update_rates | Update rates for an apartment |

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

# Watch mode
npm run dev

API Documentation

See the official Smoobu API documentation for details on endpoints and data models.

License

MIT © Morgan Demoulin