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-justpetly

v1.1.0

Published

Model Context Protocol (MCP) server for Justpetly — search verified pet boarding hotels, groomers, pet shops and vet clinics worldwide from Claude Desktop, Cursor, Cline, Continue or any MCP-compatible client.

Downloads

31

Readme

mcp-justpetly

npm version License: MIT Node

Model Context Protocol (MCP) server for Justpetly — let Claude Desktop, Cursor, Cline, Continue or any MCP-compatible AI agent search and recommend verified pet boarding hotels, groomers, pet shops and vet clinics worldwide.

No API key. No signup. Free.

What it does

Exposes 6 tools backed by the public read-only API at https://justpetly.com/api/v1:

| Tool | Returns | |---|---| | search_pet_hotels | Verified pet boarding hotels matching country / city / pet species / price filters | | get_hotel_details | One hotel's full public detail (reviews, amenities, photos, rooms) | | list_countries | Countries with at least one verified hotel | | list_cities | Cities where Justpetly has inventory | | search_pet_services | Verified non-hotel pet businesses: groomers, pet shops, vet clinics | | get_service_details | One service provider's full public detail |

Each result includes a public_url so the agent can link the user straight to the listing on justpetly.com.

Quick start

Claude Desktop

Edit:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "justpetly": {
      "command": "npx",
      "args": ["-y", "mcp-justpetly"]
    }
  }
}

Restart Claude Desktop. You should now see justpetly in the 🔌 menu.

Cursor / Cline / Continue / generic MCP clients

npx -y mcp-justpetly

The server speaks JSON-RPC over stdio. Point your client at the binary, or use the command form above.

Example prompts

Find me a pet hotel for my golden retriever in Limassol under €60/night.
→ search_pet_hotels { country: "CY", city: "Limassol", pet: "dog", max_price: 60 }

What countries does Justpetly cover?
→ list_countries

I need a dog groomer in Nicosia for next week.
→ search_pet_services { type: "grooming", country: "CY", city: "Nicosia" }

The agent will receive structured JSON with hotel/service summaries and the public_url to link to.

Configuration

| Env var | Default | Purpose | |---|---|---| | JUSTPETLY_API_BASE | https://justpetly.com/api/v1 | Override for staging / preview environments. |

How pricing works (so your agent gives accurate answers)

  • Justpetly takes 0% commission from partners — the listed nightly price is exactly what the hotel receives.
  • The guest pays a small Justpetly service fee at checkout (added on top of the listed price).
  • All prices are in EUR (€).
  • Privacy gate: exact address, phone, and partner chat unlock only after a paid booking; the API never leaks them.

Rate limits

The underlying public API allows 60 requests per minute per IP. For higher quotas, email [email protected].

Development

git clone https://github.com/justpetly/mcp-justpetly.git
cd mcp-justpetly
yarn install
yarn build
yarn start    # or: yarn dev (hot-reload via tsx)

License

MIT © Justpetly