Command Palette

Search for a command to run...

UnylyUnyly
Browse all

LettuceMeet

FreeNot checked

Unofficial MCP tools for LettuceMeet to create polls, view responses, and find meeting overlaps via CLI or MCP server.

GitHubEmbed

About

Unofficial MCP tools for LettuceMeet to create polls, view responses, and find meeting overlaps via CLI or MCP server.

README

Unofficial CLI + MCP tools for LettuceMeet.

Create polls, read responses, find meeting overlaps -- all from the terminal. Designed for AI agents that want to automate scheduling without a browser.

Why

LettuceMeet has no public API. The official platform only works through a web browser. This project reverse-engineers the internal GraphQL API so that AI agents can schedule meetings directly from the command line.

Built by someone who believes every web app should be automatable from a terminal. CLI-first, agent-friendly, zero bloat.

How it works

A Python CLI (argparse + requests) talks to api.lettucemeet.com/graphql using JWT auth. An MCP server wrapper exposes the same operations as callable tools for any MCP-compatible agent (Pi, Claude Code, Codex, etc.).

User / Agent -> CLI / MCP -> GraphQL -> lettucemeet.com

Quick setup

uv sync
uv run python main.py login "<token>"   # one-time: paste token from user

Token -- user runs this on lettucemeet.com (logged in) > DevTools Console:

copy(localStorage.getItem('akoko:session_token'))

Commands

Command Action
login <token> Save session token
create --title T --dates D1 D2 [--start-time 09:00] [--end-time 17:00] [--timezone TZ] Create poll
show <id> View event + responses
respond <id> --name N --email E --slots "DATE START END" Submit availability
overlap <id> Compute best meeting times
delete <id> Delete an event

Token resolution: --token flag > LETTUCEMEET_TOKEN env var > data/session.json

MCP server

{
  "mcpServers": {
    "lettucemeet": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to", "python", "src/lettucemeet_cli/mcp_server.py"]
    }
  }
}

Tools: create_poll, show_event, respond_to_poll, compute_overlap, delete_event

Agent skill

bash scripts/install-skill.sh --link

Agents auto-discover and can run CLI commands autonomously.

Project

src/lettucemeet_cli/   # Python package (6 modules, 42 tests)
scripts/               # Skill installer
docs/                  # Architecture, MCP docs
uv run pytest          # 42 tests

License

MIT

from github.com/brchn6/LettuceMeet_CLI

Install LettuceMeet in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install lettucemeet-mcp

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add lettucemeet-mcp -- uvx --from git+https://github.com/brchn6/LettuceMeet_CLI LettuceMeet_CLI

FAQ

Is LettuceMeet MCP free?

Yes, LettuceMeet MCP is free — one-click install via Unyly at no cost.

Does LettuceMeet need an API key?

No, LettuceMeet runs without API keys or environment variables.

Is LettuceMeet hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install LettuceMeet in Claude Desktop, Claude Code or Cursor?

Open LettuceMeet on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare LettuceMeet with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs