Jump to related tools in the same category or review the original source on GitHub.

Communication @cuuush Updated 7/18/2026 402 downloads 0 stars Security: Pass

Groupme Cli OpenClaw Plugin & Skill | ClawHub

Looking to integrate Groupme Cli into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate communication tasks instantly, without having to write custom tools from scratch.

What this skill does

Send 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.

Install

ClawHub CLI
openclaw skills install @cuuush/groupme-cli
Node.js (npx)
npx clawhub@latest install groupme-cli

Full SKILL.md

Open original
Metadata table.
namedescription
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.

SKILL.md content below is scrollable.

GroupMe CLI

Send and read GroupMe messages from the command line using the groupme CLI.

Setup

Installation

git clone https://github.com/cuuush/groupme-cli
cd groupme-cli
npm install
npm run bundle
npm link

Note: npm run bundle uses esbuild to produce a single self-contained file at dist/groupme-cli.js. No separate TypeScript compilation step needed — just install, bundle, and link.

Authentication

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.

Core Commands

List Groups

groupme groups
groupme groups --json

Read Messages

# 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

Send a Message

groupme send --group GROUP_ID --message "Hello!"

Direct Messages

# Read DMs
groupme dm-read --user USER_ID

# Send a DM
groupme dm --user USER_ID --message "Hey!"

List DM Conversations

groupme chats
groupme chats --page 2 --per-page 10

Current User Info

groupme me

Fuzzy Group Search

Groups support fuzzy name matching — you can use partial names when referencing groups in commands.

Global Options

  • --token <token> — Override configured token
  • --json — Machine-readable JSON output
  • --help — Show help

Tips

  • Run groupme groups --json to get GROUP_IDs for use in other commands
  • Use --json output to pipe into other tools or for scripting
  • Config is stored at ~/.config/groupme/config.json
ClawHub Registry URL: https://clawhub.ai/cuuush/skills/groupme-cli

Related skills

If this matches your use case, these are close alternatives in the same category.