Install
openclaw skills install groupme-cliSend and read GroupMe messages via the groupme CLI. Use when asked to list groups, read messages, send messages to groups, or manage GroupMe direct messages from the command line.
openclaw skills install groupme-cliSend and read GroupMe messages from the command line using the groupme CLI.
git clone https://github.com/cuuush/groupme-cli
cd groupme-cli
npm install
npm run bundle
npm link
Note:
npm run bundleuses esbuild to produce a single self-contained file atdist/groupme-cli.js. No separate TypeScript compilation step needed — just install, bundle, and link.
Get your GroupMe API token from dev.groupme.com → Access Token, then configure:
groupme config --token YOUR_ACCESS_TOKEN
Or use the GROUPME_TOKEN environment variable, or pass --token to any command.
groupme groups
groupme groups --json
# Latest messages from a group
groupme read --group GROUP_ID
# More messages
groupme read --group GROUP_ID --limit 50
# Paginate older messages
groupme read --group GROUP_ID --before MESSAGE_ID
# JSON output
groupme read --group GROUP_ID --json
groupme send --group GROUP_ID --message "Hello!"
# Read DMs
groupme dm-read --user USER_ID
# Send a DM
groupme dm --user USER_ID --message "Hey!"
groupme chats
groupme chats --page 2 --per-page 10
groupme me
Groups support fuzzy name matching — you can use partial names when referencing groups in commands.
--token <token> — Override configured token--json — Machine-readable JSON output--help — Show helpgroupme groups --json to get GROUP_IDs for use in other commands--json output to pipe into other tools or for scripting~/.config/groupme/config.json