Rust command line tool for querying MeetCal lifting data from the MeetCal backend.
MeetCal CLI 2.0 adds calendar-year Wrapped reports and year-over-year comparisons for athletes, clubs, and Weightlifting State Organizations (WSOs).
brew tap meetcal/tap
brew install meetcalUpgrade later:
brew update
brew upgrade meetcalInstall the latest release from GitHub:
cargo install --git https://github.com/meetcal/meetcal-cli.git meetcalInstall from a local checkout:
git clone https://github.com/meetcal/meetcal-cli.git
cd meetcal-cli
cargo install --path .Requirements: Rust 1.85+.
meetcal --help
meetcal --versionRun meetcal <command> --help for the complete arguments accepted by any command.
Search for an athlete by name. Prints meet results, comp PRs, and make rates.
meetcal search "Maddisen Mohnsen"Show an athlete's Weightlifting Wrapped for a calendar year. The report includes meets competed, make rate, total weight lifted, best lifts, average total, top meet, first-to-last improvement, longest make streak, favorite attempt, and year status.
meetcal wrapped "Maddisen Mohnsen"
meetcal wrapped "Maddisen Mohnsen" --year 2025Options:
--year,-y: Calendar year to summarize; defaults to the current calendar year
Compare an athlete's current calendar year with the previous calendar year. Every metric includes the percentage difference when the previous year has a non-zero baseline.
meetcal compare "Maddisen Mohnsen"The comparison years are fixed to the current and previous calendar years. In 2026, for example, the command compares 2026 with 2025.
Search meet entries by meet name. Optionally filter by session number and platform.
meetcal meet "2026 VIRUS Weightlifting Series 1"
meetcal meet "2026 VIRUS Weightlifting Series 1" --session-number 1 --session-platform redOptions:
--session-number,-s: Session number--session-platform,-p: Platform (red,white,blue,stars,stripes,rogue)
Show all lifting results and event statistics for a meet.
meetcal meet-results "2026 AZ Summer Slam Nationals Qualifier"Analyze a club's performance at one meet, including athletes, make rates, volume, PRs, medals, and individual result details.
meetcal club-results \
--club "POWER AND GRACE PERFORMANCE." \
--meet "2025 UMWF World Championships"Options:
--club,-c: Exact club name--meet,-m: Exact meet name
Show a club's calendar-year Wrapped report. It includes athlete count, meets, make rate, total weight lifted, best lifts, average total, and top meet.
meetcal club-wrapped "Columbus Weightlifting"
meetcal club-wrapped "Columbus Weightlifting" --year 2025Options:
--year,-y: Calendar year to summarize; defaults to the current calendar year
Compare a club's current calendar year with the previous calendar year, including percentage differences for athletes, volume, meets, make rate, best lifts, and average total.
meetcal club-compare "POWER AND GRACE PERFORMANCE."Analyze one WSO's athletes at a meet. The report includes meet participation, make rates, total weight lifted, PRs, medals, and athlete detail.
meetcal wso \
"2026 Masters National Championships & National University Championships" \
--wso CarolinaMeetCal resolves combined USA Weightlifting registration events to their individual results meets, such as Masters Nationals and National University Championships.
Options:
--wso,-w: Exact WSO name
Show a WSO's calendar-year Wrapped report.
meetcal wso-wrapped Carolina
meetcal wso-wrapped Carolina --year 2025Options:
--year,-y: Calendar year to summarize; defaults to the current calendar year
Compare a WSO's current calendar year with the previous calendar year and show percentage differences for every metric.
meetcal wso-compare CarolinaSearch records by age group, gender, and federation.
meetcal records --age Senior --gender Men --federation USAWOptions:
--age,-a: Age group--gender,-g: Gender--federation,-f:IWF,USAW,USAMW, orUMWF
Search USAW A/B standards for an age group and gender.
meetcal standards --age Senior --gender MenOptions:
--age,-a: Age group--gender,-g: Gender
Search qualifying totals for an age group, gender, and event.
meetcal qualifying-totals --age Senior --gender Men --event NationalsOptions:
--age,-a: Age group--gender,-g: Gender--event,-e: Event name
Search national rankings for a weight class and federation.
meetcal nat-rankings "Junior Women's 77kg" --federation USAWOptions:
--federation,-f:USAWorUSAMW
Search international rankings for an age group, gender, and meet.
meetcal intl-rankings --age Senior --gender Men --meet WorldsOptions:
--age,-a: Age group--gender,-g: Gender--meet,-m: Meet name
Search WSO records by age group, gender, and WSO region.
meetcal wso-records --age Senior --gender Men --wso CarolinaOptions:
--age,-a: Age group (e.g.U17,Junior,Senior,Masters 35)--gender,-g:MenorWomen--wso,-w: WSO region (e.g.Carolina,Florida)
Search Adaptive American Records by gender.
meetcal adaptive-records Womenjust check-all
cargo run -- search "Maddisen Mohnsen"
cargo build --releaseRelease builds and Homebrew publishing steps are documented in BREW.md.