
Company News
Andrew Becherer Joins Socket as Chief Information Security Officer
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.
us-medications
Advanced tools
US FDA medication lookup for OpenClaw - drug information, uses, warnings, and interactions
Look up US FDA medication information including uses, warnings, and drug interactions.
npm install -g us-medications
The full database (~45MB compressed) downloads automatically on first use.
# Look up a medication
us-medications "lisinopril"
# Search for medications
us-medications --search "blood pressure"
# Look up drug interactions
us-medications --interactions "warfarin"
# Show database statistics
us-medications --stats
# List curated medications
us-medications --list
const {
lookupMedication,
searchMedications,
lookupInteractions,
getDatabaseStats
} = require('us-medications');
// Look up a specific medication
const med = await lookupMedication('metformin');
console.log(med.uses, med.warnings);
// Search for medications
const results = await searchMedications('diabetes');
results.forEach(m => console.log(m.name));
// Get drug interactions
const interactions = await lookupInteractions('lisinopril');
All medication data comes from the US Food and Drug Administration (FDA) drug labels database.
Each medication includes:
name - Brand/generic namealtNames - Alternative namessubstances - Active ingredientsform - Dosage form (oral, injection, etc.)rx - Prescription required (true/false)uses - FDA-approved indicationswarnings - Safety information and contraindicationsinteractions - Drug-drug interactions (when available)Install as an OpenClaw skill:
# From npm
openclaw skill add us-medications
# Or from URL
openclaw skill add https://birgermoell.github.io/us-medications/skill.md
# Download full database
us-medications --download
# Force re-download
us-medications --download --force
# Check status
us-medications --stats
Data is stored in ~/.us-medications/.
⚠️ This tool provides FDA label information for educational purposes only. Always consult a healthcare professional for medical advice. Do not use this tool for self-diagnosis or treatment decisions.
MIT © Birger Moëll
Issues and PRs welcome at GitHub.
FAQs
US FDA medication lookup for OpenClaw - drug information, uses, warnings, and interactions
We found that us-medications demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.