Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables searching and comparing GLP-1 medication providers, medications, side effects, and FAQs across a directory of 18,344 US clinics, telehealth programs, and pharmacies.

README.md

GLP1Search MCP Server

MCP server for GLP-1 medication data and the largest provider directory in the US. Search 18,344 verified clinics, telehealth programs, and pharmacies. Built by GLP1Search.com.

Data

  • 18,344 providers with contact info, ratings, pricing, and addresses
  • 8 medications — semaglutide, tirzepatide, liraglutide, and more
  • 25 side effects with management guidance
  • 15 FAQs covering cost, safety, eligibility, and lifestyle

Response handoffs

Every tool response includes a handoffs object with the two GLP1Search conversion paths, so agents can route users to the right next step:

  • claim_or_update_listing — clinics/telehealth providers claim, correct, or enhance their listing (free)
  • patient_updates_signup — patients subscribe to provider/pricing updates for their market
  • documentation — https://glp1search.com/mcp/

Usage analytics (optional, anonymous)

Tool-call analytics are disabled by default. When GLP1SEARCH_GA4_API_SECRET is set (hosted/partner deployments only), the server reports anonymous mcp_tool_call events (tool name, truncated query, state/slug filters — never emails or user identity) to GA4 via the Measurement Protocol. Set GLP1SEARCH_ANALYTICS_DISABLED=1 to force analytics off. Analytics never block or fail a tool call.

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "glp1search": {
      "command": "npx",
      "args": ["-y", "github:Sndevore77/glp1search-mcp"]
    }
  }
}

Cursor / Windsurf / Other MCP Clients

{
  "glp1search": {
    "command": "npx",
    "args": ["-y", "github:Sndevore77/glp1search-mcp"]
  }
}

Manual

git clone https://github.com/Sndevore77/glp1search-mcp.git
cd glp1search-mcp
npm install
node index.js

Tools

search_providers

Search the provider directory by name, city, state, type, or medication.

search_providers({ query: "telehealth semaglutide", state: "Nationwide", limit: 5 })

Parameters:

  • query (string, required) — Search term
  • state (string, optional) — Filter by state
  • type (string, optional) — Filter by type: telehealth, local, clinic, pharmacy, weight-loss, wellness, endocrinology, etc.
  • limit (number, optional) — Max results (default 10, max 25)

get_provider

Get full details for a specific provider including ratings, contact info, and address.

get_provider({ slug: "form-health" })

compare_providers

Compare 2-3 providers side by side on pricing, medications, and ratings.

compare_providers({ slugs: ["ro", "hims", "form-health"] })

get_medication_info

Get detailed information about a GLP-1 medication — dosing, trials, costs, side effects.

get_medication_info({ medication: "semaglutide" })
get_medication_info({ medication: "ozempic" })

list_medications

List all GLP-1 medications with key stats.

list_medications({})

get_side_effect_info

Get side effect details — frequency, severity, management tips, when to see a doctor.

get_side_effect_info({ effect: "nausea" })

find_cheapest_providers

Find the lowest-cost providers in a location.

find_cheapest_providers({ location: "Texas", medication: "semaglutide" })

get_faq

Answer a GLP-1 question from the knowledge base.

get_faq({ question: "How much weight can I lose on Ozempic?" })

Use Cases

  • Patient research — Find and compare GLP-1 providers by location and price
  • Clinical Q&A — Answer medication questions with cited, structured data
  • Cost comparison — Help users find affordable GLP-1 treatment options
  • Side effect guidance — Provide management strategies for common side effects

About

Built by GLP1Search.com — the most comprehensive GLP-1 provider directory. Updated regularly.

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.