lilith-gmail
Provides tools to search, retrieve, and summarize Gmail emails with privacy-aware classification and PII sanitization.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@lilith-gmailsearch my emails about vacation plans last month"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Lilith Email System
Gmail sync daemon + Lilith agent tools for semantic email search, with privacy-aware classification and PII sanitization.
Quick Start
1. Database (shared Postgres)
This project uses a shared PostgreSQL server. Database name for this app: lilith_emails.
Ensure the shared Postgres (with pgvector) is running. Clone the lilith-compose project first.
2. Run migrations
uv run alembic upgrade head3. Add a Gmail account
Download OAuth client secrets from Google Cloud Console, then:
uv run python main.py add-account path/to/client_secrets.json4. Sync (download only)
uv run python main.py sync 1Logs show progress: pages fetched, messages stored, total so far.
5. Transform (classify + sanitize + embed)
Run after sync to generate privacy_tier, body_redacted, and multi-level embeddings (subject, body or chunks) from stored data. Re-run anytime you change models or logic (no re-download).
uv run python main.py transform 1Clean all derived columns added by transform command.
uv run python main.py reset-transform 16. Run the sync daemon (Pub/Sub webhook)
uv run python main.py serveWhen the daemon receives a Gmail Pub/Sub push, it runs incremental sync and then transform automatically for that account.
Without a public URL (local dev): use pull instead of push. Create a pull subscription, set PUBSUB_SUBSCRIPTION in .env, then run:
gcloud auth application-default login
uv run python main.py watch 1
# In another terminal, poll for notifications (same sync+transform as webhook):
uv run python main.py pullCreate the pull subscription (same project as the topic):gcloud pubsub subscriptions create lilith-emails-pull --topic=gmail-topic --project=lilithsync
With a public URL: use a push subscription (endpoint = your public /webhook/gmail URL) and run the daemon with uv run python main.py serve. Register the watch once: uv run python main.py watch <account_id> (requires GOOGLE_CLOUD_PROJECT and PUBSUB_TOPIC in .env).
If watch returns 403: grant Gmail permission to publish to your topic:
gcloud pubsub topics add-iam-policy-binding gmail-topic \
--member="serviceAccount:gmail-api-push@system.gserviceaccount.com" \
--role="roles/pubsub.publisher" \
--project=lilithsyncTesting the webhook locally
You can trigger the same path without Gmail by POSTing a simulated Pub/Sub payload. First run a full sync so the account has last_history_id, then start the daemon and send:
# Start daemon in another terminal: uv run python main.py serve --port 8000
# Replace YOUR_EMAIL and HISTORY_ID (e.g. from DB: email_accounts.last_history_id)
# Portable (any OS):
python3 -c "
import base64, json, urllib.request
d = base64.b64encode(json.dumps({'emailAddress':'YOUR_EMAIL','historyId':'HISTORY_ID'}).encode()).decode()
urllib.request.urlopen(urllib.request.Request('http://localhost:8000/webhook/gmail', data=json.dumps({'message':{'data':d}}).encode(), headers={'Content-Type':'application/json'}, method='POST'))
print('OK')
"Or with curl (Linux: use base64 -w0; macOS: use base64):
B64=$(echo -n '{"emailAddress":"YOUR_EMAIL","historyId":"HISTORY_ID"}' | base64)
curl -s -X POST http://localhost:8000/webhook/gmail -H "Content-Type: application/json" -d "{\"message\":{\"data\":\"$B64\"}}"The daemon will run incremental sync and then transform for that account. Use get-email or MCP tools to verify new or updated rows.
Related MCP server: Gmail MCP Server
Configuration
Environment variables (.env or shell):
Variable | Description |
| PostgreSQL connection string |
| Fernet key for OAuth token encryption ( |
| GCP project ID for Pub/Sub |
| TEI embedding service (default |
| Spacy API for NER/PII sanitization (default |
| fastText language detection API (default |
| vLLM OpenAI-compatible API (default |
| Model id for chat completions when not in capabilities (default |
Transform uses capabilities.json: run uv run python main.py capabilities before transform so the file exists and has embedding.max_tokens, vllm.model_id, spacy_api.available, and fasttext_langdetect.available. No env fallback for transform. Emails with transform_completed_at set are skipped unless you use --force (which prompts for confirmation); if transform fails mid-run, those emails are retried next time.
MCP Server (Agent Tools)
The Lilith Email MCP server exposes your transformed Gmail.
uv run mcp
uv run mcp --transport streamable-http --port 6201MCP Tools
Tool | Description |
| Search by natural language + optional filters (from_email, labels, has_attachments, date_after, date_before, limit). Returns list of email dicts. |
| Fetch one email by Gmail message ID. Returns email dict or error. |
| Fetch all messages in a thread by thread_id. Returns thread dict with |
| Summarize by |
All responses use external privacy: SENSITIVE content is redacted, PERSONAL content is shown sanitized.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Agent-Lilith/lilith-emails'
If you have feedback or need assistance with the MCP directory API, please join our Discord server