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

@striderlabs/mcp-riteaid

v1.0.0

Published

MCP server for Rite Aid pharmacy services - search products, manage prescriptions, find stores, schedule vaccines

Readme

@striderlabs/mcp-riteaid

MCP (Model Context Protocol) server for Rite Aid pharmacy services. Enables AI assistants to search products, manage prescriptions, find stores, check inventory, and schedule vaccines at riteaid.com.

Tools

| Tool | Description | |------|-------------| | search_products | Search Rite Aid's product catalog | | refill_prescription | Request a prescription refill by Rx number | | get_prescriptions | List active prescriptions (requires login) | | find_stores | Find nearby Rite Aid locations by zip code | | check_availability | Check product availability at a specific store | | schedule_vaccine | Schedule a vaccination appointment |

Installation

npm install @striderlabs/mcp-riteaid

Usage

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "riteaid": {
      "command": "npx",
      "args": ["-y", "@striderlabs/mcp-riteaid"],
      "env": {
        "BROWSERBASE_CDP_URL": "your-browserbase-cdp-url"
      }
    }
  }
}

With Browserbase

Set the BROWSERBASE_CDP_URL environment variable to connect via Browserbase for reliable cloud browser automation:

BROWSERBASE_CDP_URL="wss://connect.browserbase.com?apiKey=YOUR_KEY" npx @striderlabs/mcp-riteaid

Without Browserbase (local browser)

The server runs with a local Chromium instance when BROWSERBASE_CDP_URL is not set:

npx @striderlabs/mcp-riteaid

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | BROWSERBASE_CDP_URL | No | Browserbase CDP WebSocket URL for cloud browser automation. Falls back to local Chromium if not set. |

Tool Reference

search_products

Search for products on Rite Aid's website.

Parameters:

  • query (required): Search term (e.g., "ibuprofen", "shampoo")
  • category (optional): Product category to filter results

Example:

{ "query": "vitamin c 1000mg", "category": "vitamins" }

refill_prescription

Request a prescription refill using an Rx number.

Parameters:

  • rx_number (required): Prescription number from the label
  • date_of_birth (required): Patient DOB in MM/DD/YYYY format

Example:

{ "rx_number": "1234567", "date_of_birth": "01/15/1980" }

get_prescriptions

List all active prescriptions for a Rite Aid account.

Parameters:

  • username (required): Rite Aid account email
  • password (required): Rite Aid account password

Example:

{ "username": "[email protected]", "password": "mypassword" }

⚠️ Credentials are used only to authenticate with riteaid.com and are not stored.


find_stores

Find Rite Aid stores near a zip code.

Parameters:

  • zip_code (required): US zip code
  • radius (optional): Search radius in miles (default: 10)

Example:

{ "zip_code": "10001", "radius": 5 }

check_availability

Check if a product is available at a specific Rite Aid store.

Parameters:

  • product_name (required): Product name or description
  • store_id (required): Store ID from find_stores

Example:

{ "product_name": "Tylenol Extra Strength", "store_id": "4832" }

schedule_vaccine

Schedule a vaccination appointment at a Rite Aid pharmacy.

Parameters:

  • vaccine_type (required): Type of vaccine (flu, COVID-19, shingles, etc.)
  • zip_code (required): Zip code to find nearby locations
  • preferred_date (required): Date in YYYY-MM-DD format
  • first_name (required): Patient first name
  • last_name (required): Patient last name
  • date_of_birth (required): Patient DOB in MM/DD/YYYY format
  • email (required): Confirmation email
  • phone (optional): Reminder phone number

Example:

{
  "vaccine_type": "flu",
  "zip_code": "10001",
  "preferred_date": "2025-10-15",
  "first_name": "Jane",
  "last_name": "Doe",
  "date_of_birth": "01/15/1980",
  "email": "[email protected]",
  "phone": "555-123-4567"
}

Development

# Install dependencies
npm install

# Build TypeScript
npm run build

# Run directly
node dist/index.js

License

MIT