LeafBridge
Allows an AI assistant to read, edit, and manage files in Overleaf projects using the Overleaf Git bridge, enabling tasks such as fixing grammar, adding citations, uploading binaries, and committing changes directly to the project history.
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., "@LeafBridgefix the grammar in my introduction"
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.
LeafBridge
Edit your Overleaf projects straight from Claude and ChatGPT — no installs, no cloning, no copy‑paste.
LeafBridge is a remote MCP server that connects an AI assistant to your Overleaf projects through Overleaf's own Git bridge. Ask "fix the grammar in my introduction" or "add a related‑work paragraph citing Smith 2021" and the change is committed and pushed to Overleaf instantly, visible in your project's history.
Status: Phase 1 (local engine) — working and tested. You run the server on your own machine and add its URL to Claude/ChatGPT. The hosted, multi‑user, billed service (Phases 2–3) is on the roadmap below.
⚠️ Requirement: Overleaf Git integration
LeafBridge works through Overleaf's Git integration, which is a paid/premium feature on Overleaf Cloud. You need one of:
An Overleaf paid plan (Standard/Professional), or
Access through a university/institutional site license that includes Git integration (many do — check whether your Overleaf shows Account Settings → Git Integration).
Free Overleaf accounts cannot create Git tokens, so LeafBridge can't connect to them.
Related MCP server: Overleaf MCP Server
Quick start (local)
Prerequisites: Python 3.10+ and Git.
# 1. Install dependencies (from the repo root)
python -m venv .venv
.venv\Scripts\activate # Windows PowerShell: .venv\Scripts\Activate.ps1
# source .venv/bin/activate # macOS/Linux
pip install -r requirements.txt
# 2. Configure your project(s)
copy projects.example.json projects.json # cp on macOS/Linux
# then edit projects.json (see below)
# 3. Run it
python -m leafbridge
# -> MCP endpoint: http://127.0.0.1:8000/mcp/Getting your Overleaf Git token
In Overleaf, open Account Settings → Git Integration (also called Project Synchronization).
Click Create Token / Add another token and copy the
olp_…token (you only see it once).Grab your project link: open the project and copy the URL — it looks like
https://www.overleaf.com/project/aaaaaaaaaaaaaaaaaaaaaaaa.
projects.json
{
"projects": [
{
"name": "thesis",
"url": "https://www.overleaf.com/project/aaaaaaaaaaaaaaaaaaaaaaaa",
"token": "olp_your_token_here"
}
]
}projects.json is git‑ignored and never leaves your machine except as HTTPS requests to git.overleaf.com. You can list several projects; tools default to the only project when you have just one.
Connect it to your AI
Claude (web/desktop): Settings → Connectors → Add custom connector → paste
http://127.0.0.1:8000/mcp/.ChatGPT (Plus/Pro/Business/Edu): enable Developer mode under Settings → Apps/Connectors, then add the same URL. (Write actions require a Business/Enterprise/Edu workspace; read‑only works on Plus/Pro.)
Then just talk to the assistant about your paper.
Tools
Tool | What it does | Metered* |
| Show your connected projects | No |
| List | No |
| Read a file (with line numbers) | No |
| Parse a | No |
| Return one section by title | No |
| Exact‑string replacement → commit + push | Yes |
| Create/overwrite a file → commit + push | Yes |
| Delete a file → commit + push | Yes |
| Add/replace a binary file (image, PDF) → commit + push | Yes |
| Build the project with a local LaTeX engine and report errors (optional; needs Tectonic) | No |
| Recent commits from Overleaf's history | No |
| Keyword search across project files | No |
| Return a file's full text by id (ChatGPT contract) | No |
* Only writes (pushes to Overleaf) are metered in the future hosted plan; reading is always free. In Phase 1 there is no metering at all.
Every write commits and pushes immediately and returns the commit hash — there's no separate "save," and the change is auditable in Overleaf's history. All file paths are validated against the project directory (no traversal), edits require an exact, unique match, and the engine always pulls before pushing and never force‑pushes.
Architecture (Phase 1)
Claude / ChatGPT
│ MCP over Streamable HTTP (http://127.0.0.1:8000/mcp/)
▼
LeafBridge (FastMCP, Python)
├─ tools: list / read / sections / edit / write / history / search / fetch
├─ git worker: shallow clone cache, per‑project lock, pull‑then‑push
└─ projects.json (your links + tokens, local only)
│ HTTPS + your Overleaf Git token
▼
Overleaf Git bridge (git.overleaf.com/<projectId>)The clone cache is disposable (default: %LOCALAPPDATA%\LeafBridge\cache) and re‑created on demand. See docs/RESEARCH-NOTES.md for the verified Overleaf / MCP / FastMCP API details this is built on.
Development
pip install -e ".[dev]"
python -m pytest tests/test_units.py -q # fast, no network
python tests/it_gitflow.py # full clone→edit→push flow vs a local fake remote
python tests/http_smoke.py # against a running `python -m leafbridge`Settings via environment (optional, or in a .env): LEAFBRIDGE_HOST, LEAFBRIDGE_PORT, LEAFBRIDGE_DATA_DIR, LEAFBRIDGE_CONFIG.
Self‑hosted Overleaf Server Pro (or local testing) is supported by adding a git_url override to a project entry.
Roadmap
Phase 1 — local engine ✅ (this repo) — read/edit/write tools over the Git bridge, tested end‑to‑end.
Phase 2 — hosted + auth — deploy to Azure Container Apps; OAuth 2.1 (PKCE + DCR) so users connect via
claude.ai's custom‑connector flow; per‑user encrypted token storage.Phase 3 — billing — Stripe Checkout, usage metering (writes only), free tier + Pro.
Phase 4 — publish — docs site, privacy policy, Connectors Directory submission.
Later — compile checks (chktex), multi‑file smart edits, team plans.
License
AGPL‑3.0‑or‑later. You may self‑host freely; running a modified version as a network service requires publishing your changes.
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/yasaminfayyaz/milatexai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server