people-searchlisted
Install: claude install-skill LessieAI/lessie-skill
# Lessie — People Search & Enrichment
## Setup
Lessie supports two modes: **CLI** (default, recommended) and **MCP Server**.
### Mode A: CLI (default)
Install the Lessie CLI binary:
```bash
npm install -g @lessie/cli
```
Or use without installing:
```bash
npx @lessie/cli --version
```
First-time authorization:
```bash
lessie auth
```
This opens a browser for login/registration. Token is cached at `~/.lessie/oauth.json`.
Verify connection:
```bash
lessie status
```
### Mode B: MCP Server
Add to your MCP config (Claude Code `~/.claude.json`, Cursor `~/.cursor/mcp.json`, Codex `~/.codex/config.toml`, etc.):
```json
{
"mcpServers": {
"lessie": {
"command": "npx",
"args": ["-y", "@lessie/mcp-server"],
"env": {
"LESSIE_REMOTE_MCP_URL": "https://app.lessie.ai/mcp-server/mcp"
}
}
}
}
```
### Uninstall
- **CLI:** `npm uninstall -g @lessie/cli && rm -rf ~/.lessie/`
- **MCP:** Remove the `"lessie"` entry from your `.json` and `rm -rf ~/.lessie/`
## Version check
Run these checks once at the start of each session, before mode detection. Both checks are non-blocking — if any command fails (network error, timeout), skip silently and proceed.
### Skill version
1. Read current local version from this file's metadata `version` field above.
2. Fetch remote version:
```bash
curl -sf --max-time 5 https://raw.githubusercontent.com/LessieAI/lessie-skill/main/people-search/SKILL.md | head -5 | grep 'version:' | head -1 | awk '{p