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

medicalmet-mcp-server

v0.1.1

Published

MCP server for MedicalMet appointment CRUD operations over stdio

Readme

MedicalMet MCP Server

A Model Context Protocol (MCP) server for MedicalMet, exposing appointment CRUD and patient search capabilities.

This server runs as a backend service over the stdio transport. It enables AI agents to securely interact with the MedicalMet platform without exposing credentials to the client.

Features

  • Auth: Session-based login using email and password.
  • Patient Search: Multi-source patient search for booking disambiguation.
  • Appointment CRUD: Read, Create, Update, Archive, and Cancel appointments.
  • Safety: Write operations are blocked by default and must be explicitly enabled via MEDICALMET_ALLOW_WRITES=true.

Installation

You can run this server directly using npx (no installation required), or install it globally:

npm install -g medicalmet-mcp-server

Configuration

The server requires environment variables to authenticate with MedicalMet.

| Variable | Description | Required | Default | |----------|-------------|----------|---------| | MEDICALMET_EMAIL | MedicalMet account email | Yes | - | | MEDICALMET_PASSWORD | MedicalMet account password | Yes | - | | MEDICALMET_BASE_URL | Base URL for MedicalMet API | No | https://app.medicalmet.com | | MEDICALMET_ALLOW_WRITES | Set to true to enable write operations | No | false | | MEDICALMET_COMPANY_ID | Default company ID | No | Fetched from profile | | MEDICALMET_BRANCH_ID | Default branch ID | No | Fetched from profile |

.env Example

Create a .env file or set these in your environment:

[email protected]
MEDICALMET_PASSWORD=ABC12345
MEDICALMET_ALLOW_WRITES=true

Usage

Running Directly

[email protected] MEDICALMET_PASSWORD=ABC12345 npx medicalmet-mcp-server

Claude Desktop Configuration

To use this server with Claude Desktop, add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "medicalmet": {
      "command": "npx",
      "args": ["medicalmet-mcp-server"],
      "env": {
        "MEDICALMET_EMAIL": "[email protected]",
        "MEDICALMET_PASSWORD": "your-password",
        "MEDICALMET_ALLOW_WRITES": "true"
      }
    }
  }
}

Available Tools

  • get_current_user: Get authenticated user profile.
  • list_branches: List available branches.
  • list_appointment_types: List appointment types.
  • search_patients: Search patient records.
  • find_existing_patients_for_booking: Search and disambiguate existing patients.
  • list_appointments: List appointments with filters.
  • get_appointment: Get a single appointment by ID.
  • create_appointment: Create a new appointment (requires MEDICALMET_ALLOW_WRITES=true).
  • update_appointment: Update an existing appointment (requires MEDICALMET_ALLOW_WRITES=true).
  • archive_appointment: Soft-delete an appointment (requires MEDICALMET_ALLOW_WRITES=true).
  • cancel_appointment: Cancel an appointment (requires MEDICALMET_ALLOW_WRITES=true).

Development

# Install dependencies
pnpm install

# Build the TypeScript code
pnpm build

# Run locally
pnpm start