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

yarooms-mcp

v1.0.3

Published

MCP server for YAROOMS workplace management platform

Readme

YAROOMS MCP Server

MCP server for the YAROOMS workplace management platform. Enables AI agents (Claude, ChatGPT, Copilot, etc.) to search rooms, book spaces, manage visitors, and set work status through the Model Context Protocol.

Setup

npm install

Environment Variables

Create a .env file (see .env.example):

YAROOMS_API_TOKEN=your-api-token
YAROOMS_BASE_URL=https://your-tenant.yarooms.com/api

Usage

Local (stdio)

npm run stdio

Smithery Dev Mode

npm run dev

Smithery Production

npm run build
npm start

Tools

| Tool | Description | |------|-------------| | search_available_spaces | Search for available rooms/desks on a floor | | create_booking | Book a room or desk | | get_my_bookings | View your bookings | | cancel_booking | Cancel a booking | | modify_booking | Change booking time, space, or title | | check_in_booking | Check in to a booking | | check_out_booking | Check out of a booking | | get_locations | List office locations | | get_floors | List floors for a location | | get_floor_info | Get floor details and spaces | | get_room_schedule | View room booking timeline | | get_space_types | List space types (Desk, Meeting Room, etc.) | | get_location_schedule | Get operating hours for a location | | get_booking_options | Get valid booking intervals for a space (resolves booking strategy) | | get_work_status | View work status (WFH, office, etc.) | | set_work_status | Set work status for dates | | register_visitor | Register a visitor | | list_visitors | List visitors for a date/location | | cancel_visitor | Cancel a visitor registration | | get_all_bookings | List all bookings (admin) — filter by date, location, space, booker, title, status | | get_pending_approvals | List booking requests pending your approval | | approve_booking | Approve pending booking requests | | reject_booking | Reject pending booking requests with optional reason | | search_people | Search for people by name or email | | get_my_profile | Get your profile — name, email, team, location | | get_teammates | List members of your team | | get_teammate_status | View a teammate's work status | | get_teammate_bookings | View a teammate's bookings for a date |

Resources

| Resource | URI | Description | |----------|-----|-------------| | Work Status Options | yarooms://work-status-options | Available status options with IDs |

Testing

# Unit tests
npm test

# Integration tests (requires API credentials)
RUN_INTEGRATION=true npm test