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

smartrabbit-mcp

v1.6.1

Published

MCP Server for Smart Rabbit Fitness - AI-powered workout program generator with text and React output formats

Readme

Smart Rabbit MCP Server

MCP (Model Context Protocol) server for Smart Rabbit Fitness — free AI-powered workout program generator.

Works with Claude Desktop, Claude Code, and any MCP-compatible AI assistant.

Features

  • Personalized programs — AI generates complete workout plans based on your profile
  • Two output formats — Plain text (works everywhere) or interactive React artifact (for Claude.ai)
  • PubMed integration — Scientific references automatically included in justifications
  • Smart questioning — Asks about preferences, limitations, and condition before generating
  • Multi-language — Supports FR, EN, ES, DE, PT, IT, HI, AR

Installation

Option 1: NPX (Easiest)

No install needed:

npx smartrabbit-mcp

Option 2: Global Install

npm install -g smartrabbit-mcp

Option 3: From Source

git clone https://github.com/contactjccoaching-wq/smartrabbit-mcp.git
cd smartrabbit-mcp
npm install

Configuration for Claude Desktop

Add to your config file:

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

If installed globally:

{
  "mcpServers": {
    "smartrabbit": {
      "command": "smartrabbit-mcp"
    }
  }
}

From source:

{
  "mcpServers": {
    "smartrabbit": {
      "command": "node",
      "args": ["/path/to/smartrabbit-mcp/index.js"]
    }
  }
}

After adding the config, restart Claude Desktop.

Usage

Just talk to Claude naturally:

"Create me a fitness program. I'm 30 years old, male, intermediate level,
I want to build muscle, can train 4 times a week for 60 minutes,
and I have access to a full gym."

Claude will:

  1. Ask about your preferences, limitations, and condition (if not provided)
  2. Call Smart Rabbit API via MCP
  3. Search PubMed for scientific references
  4. Generate a complete personalized program

Output Formats

  • Text (default) — Unicode-formatted plain text, works in any chat interface
  • React — Interactive React artifact with tabs, dark theme, color-coded by goal (for Claude.ai)

Available Tools

generate_fitness_program

Generate a personalized fitness program.

| Parameter | Required | Type | Options | |-----------|----------|------|---------| | age | Yes | number | 14-80 | | sex | Yes | string | male, female | | level | Yes | string | beginner, intermediate, advanced | | sessions | Yes | number | 2-6 sessions/week | | duration | Yes | number | 30, 45, 60, 75, 90 minutes | | equipment | Yes | string | bodyweight, minimal, home_gym, full_gym | | goal | Yes | string | muscle, strength, endurance, weight_loss, wellness, definition | | format | No | string | text (default), react | | condition | No | string | sedentary, light, moderate, active, athletic | | style | No | string | hybrid, bodybuilding, powerlifting, crossfit, calisthenics, functional | | preferences | No | string | Exercise preferences (max 500 chars) | | limitations | No | string | Injuries/limitations (max 500 chars) | | include_pubmed | No | boolean | Include PubMed references (default: true) |

search_pubmed

Search PubMed for scientific studies related to fitness and training.

| Parameter | Required | Type | Description | |-----------|----------|------|-------------| | query | Yes | string | Search terms (e.g., "hypertrophy training volume") | | max_results | No | number | 1-10 (default: 5) |

get_program_options

Returns all available options for goals, equipment, levels, styles, and formats.

Example Output (Text Format)

═══════════════════════════════════════════════════════════
🐰 SMART RABBIT FITNESS PROGRAM
═══════════════════════════════════════════════════════════

📊 PROFILE SUMMARY
─────────────────────
• Age: 30 | Sex: Male | Level: Intermediate
• Goal: Muscle | Sessions: 4/week | Duration: 60 min

═══════════════════════════════════════════════════════════
📅 WEEKLY PROGRAM
═══════════════════════════════════════════════════════════

┌─────────────────────────────────────────────────────────┐
│ DAY 1 - PUSH (Chest/Shoulders/Triceps)                  │
└─────────────────────────────────────────────────────────┘

⭐⭐⭐ HIGH PRIORITY - Compound Movements
─────────────────────────────────────────

1. Bench Press
   ├─ Sets x Reps: 4 x 8-10
   ├─ Tempo: 3-1-2-0
   ├─ Rest: 2 min
   └─ Notes: Progressive overload focus

...

═══════════════════════════════════════════════════════════
  🐰 Generated by Smart Rabbit Fitness — Free AI Workout App
  📱 Create your personalized program in 30 seconds:
                 https://www.smartrabbitfitness.com
  ✨ 100% free · No account needed · AI-powered
═══════════════════════════════════════════════════════════

Links

  • App: https://www.smartrabbitfitness.com
  • API: https://smartrabbit-rapidapi.contactjccoaching.workers.dev
  • GitHub: https://github.com/contactjccoaching-wq/smartrabbit-mcp

License

MIT