Claude Local Bridge
A secure MCP server that allows Claude to read and write local files on your machine with explicit approval gating for each access.
README
Claude Local Bridge
Access your local repos from Claude on your phone. No more being chained to your PC.
A secure bridge server that lets Claude (web, mobile, desktop) read and write files on your machine through an approval-gated MCP server. Every file access requires your explicit OK — nothing touches disk without you saying so.
┌──────────────────┐ ┌────────────────────────┐
│ Claude Mobile │ tunnel / LAN / VPN │ Claude Local Bridge │
│ Claude Web │ ◄──────────────────────► │ (your PC) │
│ Claude Desktop │ MCP over SSE │ │
└──────────────────┘ └──────────┬─────────────┘
│
┌─────────▼──────────┐
│ Approval Gate │
│ (you approve each │
│ file via dashboard│
│ or phone) │
└─────────┬──────────┘
│
┌─────────▼──────────┐
│ Local Files │
│ (sandboxed to │
│ workspace roots) │
└────────────────────┘
Features
- MCP Server — 7 tools Claude can call: browse, read, write, request access, list/revoke approvals, view audit log
- Approval Gate — every file read/write blocks until you approve via the dashboard
- Real-time Dashboard — industrial-themed web UI for managing approvals, browsing files, viewing audit logs
- Sandboxed — only directories you whitelist are accessible
- Token Auth — bearer token generated at startup for pairing
- Audit Trail — every access logged with timestamp, action, path, and outcome
- WebSocket — live push notifications for approval requests
- Tunnel-ready — works with Tailscale, Cloudflare Tunnel, NetBird, or any reverse proxy
Quick Start
# Clone and install
git clone https://github.com/suhteevah/claude-local-bridge.git
cd claude-local-bridge
pip install -r requirements.txt
# Start the bridge (expose your project directories)
python -m app.main --roots ~/projects ~/code
The server starts and prints:
🔗 Bridge Ready
HTTP API: http://127.0.0.1:9120
MCP (SSE): http://127.0.0.1:9120/mcp/sse
Dashboard: http://127.0.0.1:9120/
Token: a1b2c3d4e5f6...
Connect Claude
Claude Desktop / Claude Code
Add to your MCP settings (claude_desktop_config.json or .claude/settings.json):
{
"mcpServers": {
"local-bridge": {
"url": "http://localhost:9120/mcp/sse"
}
}
}
Claude Mobile (via tunnel)
Set up a tunnel (see tunnel.md) so your phone can reach the server, then use the tunnel URL as the MCP endpoint.
Quickest option (no account needed):
# In a second terminal
cloudflared tunnel --url http://localhost:9120
# Gives you: https://random-words.trycloudflare.com
# Use: https://random-words.trycloudflare.com/mcp/sse
MCP Tools
| Tool | Description |
|---|---|
browse_files |
List the workspace file tree (no approval needed) |
request_file_access |
Request approval to read/write — blocks until you decide |
read_file |
Read a file (requires active READ approval) |
write_file |
Write to a file (requires active WRITE approval) |
list_approvals |
See all current approvals and their status |
revoke_approval |
Revoke an existing approval |
view_audit_log |
View the access history |
How it works
- Claude calls
browse_filesto see your project structure - Claude calls
request_file_accesswith a reason ("I need to read src/main.py to fix the bug") - Your dashboard shows the request — you approve or deny
- If approved, Claude can now
read_fileorwrite_filewithin the approved scope - Everything is logged in the audit trail
Dashboard
The built-in web dashboard at http://localhost:9120/ lets you:
- Approve/deny access requests in real-time (WebSocket-powered)
- Browse your workspace file tree
- View the full audit log with filtering
- Monitor server status and active approvals
- Revoke approvals at any time
Mobile-friendly design — manage approvals from your phone while Claude works.
HTTP API
The full REST API is also available for custom integrations:
| Method | Path | Auth | Description |
|---|---|---|---|
GET |
/health |
No | Server status and config |
GET |
/files/tree |
Token | Directory tree listing |
GET |
/files/read?path=... |
Token | Read file contents |
PUT |
/files/write |
Token | Write file contents |
POST |
/approvals/request |
Token | Request file access (blocking) |
GET |
/approvals/ |
No | List all approvals |
GET |
/approvals/pending |
No | List pending requests |
POST |
/approvals/{id}/decide |
No | Approve or deny |
DELETE |
/approvals/{id} |
No | Revoke approval |
GET |
/audit/ |
No | Recent audit entries |
GET |
/audit/path?path=... |
No | Audit for specific path |
WS |
/ws/approvals |
No | Real-time approval WebSocket |
Tunnel Options
See tunnel.md for detailed setup guides. Summary:
| Solution | FOSS | Cost | Best For |
|---|---|---|---|
| Tailscale | Client: BSD-3 / Headscale = full FOSS | Free | Personal phone access |
| Cloudflare Tunnel | Client: Apache 2.0 | Free | Sharing with others, public URL |
| NetBird | Full FOSS (BSD-3) | Free self-hosted | Full FOSS purity |
| FRP | Apache 2.0 | Free (needs VPS) | Self-hosted everything |
CLI Options
python -m app.main --roots DIR [DIR ...] [OPTIONS]
Options:
--roots Workspace directories to expose (required, multiple allowed)
--host Bind address (default: 127.0.0.1, use 0.0.0.0 for LAN/tunnel)
--port Port number (default: 9120)
--max-file-size-mb Max file size limit in MB (default: 10)
Security
- Sandboxed roots — only directories you explicitly pass via
--rootsare accessible - Extension blocklist —
.env,.pem,.key,.p12,.pfx,.secretare always blocked - Path traversal prevention —
../attacks are caught and rejected - Bearer token auth — API endpoints require the token generated at startup
- Approval gating — every file read/write needs explicit human approval
- Backup on write — automatic
.bakfile created before any overwrite - Audit logging — full trail of every access attempt (successful or not)
Project Structure
claude-local-bridge/
├── app/
│ ├── main.py # Entry point, FastAPI + MCP setup
│ ├── mcp/
│ │ └── server.py # MCP tools (browse, read, write, approve...)
│ ├── middleware/
│ │ └── auth.py # Bearer token authentication
│ ├── models/
│ │ └── schemas.py # Pydantic models and enums
│ ├── routers/
│ │ ├── approvals.py # Approval CRUD endpoints
│ │ ├── audit.py # Audit log endpoints
│ │ ├── files.py # File read/write endpoints
│ │ └── ws.py # WebSocket for real-time approvals
│ └── services/
│ ├── approval_service.py # Approval state management
│ ├── audit_service.py # In-memory audit log
│ └── file_service.py # Sandboxed file operations
├── dashboard/
│ ├── index.html # Dashboard shell
│ ├── style.css # Industrial console theme
│ └── bridge.js # API client + WebSocket
├── requirements.txt
├── tunnel.md # Tunnel setup guide
└── README.md
License
MIT
Support This Project
If you find this project useful, consider buying me a coffee! Your support helps me keep building and sharing open-source tools.
Every donation, no matter how small, is greatly appreciated and motivates continued development. Thank you!
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。