@contextloom/bridge
v1.1.0
Published
Stateless HTTP Bridge for ContextLoom MCP
Downloads
20
Readme
@contextloom/bridge
The secure tunnel for ContextLoom MCP.
This bridge enables local AI agents (Claude Desktop, Cursor, etc.) to securely access internal enterprise context through a ContextLoom Appliance.
Quick Start
The fastest way to use the bridge is via npx. You will need your Appliance URL and a Personal Access Token (PAT).
npx @contextloom/bridge --url https://loom.internal --token cl_pat_YOUR_TOKENConfiguration
Arguments
| Argument | Environment Variable | Description |
| --- | --- | --- |
| --url | CONTEXTLOOM_URL | The base URL of your ContextLoom appliance. |
| --token | CONTEXTLOOM_TOKEN | Your Personal Access Token. |
Client Setup
Cursor
- Open Cursor Settings -> General -> MCP.
- Add New MCP Server:
- Name:
contextloom - Type:
stdio - Command:
npx - Args:
-y @contextloom/bridge --url https://loom.internal --token cl_pat_YOUR_TOKEN
- Name:
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"contextloom": {
"command": "npx",
"args": [
"-y",
"@contextloom/bridge",
"--url", "https://loom.internal",
"--token", "cl_pat_YOUR_TOKEN"
]
}
}
}Security
ContextLoom Bridge uses standard Model Context Protocol (MCP) over Stdio, tunneling requests to the appliance via a secure SSE (Server-Sent Events) connection.
- No Code Storage: The bridge does not store or cache your source code.
- Audited Access: Every request made through the bridge is logged in the ContextLoom appliance for compliance.
License
ISC
