
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
@sealgate/mcp
Advanced tools
Sealgate MCP server: a thin MCP proxy to your organisation's Sealgate AI security gateway and data firewall.
The Model Context Protocol (MCP) server for Sealgate, the AI data-leak-prevention platform: a security gateway and data firewall that sits between AI agents (Claude, ChatGPT, Cursor, Copilot) and your organisation's data and tools.
This server is a thin MCP proxy. It forwards a small set of tool calls to your organisation's own Sealgate gateway, which you configure with two environment variables. There is no shared public Sealgate endpoint: every organisation runs its own gateway, so you supply the URL and key.
| Tool | What it does |
|---|---|
list_mcp_servers | List the MCP servers governed by your Sealgate gateway, with access-control classification and connection status. |
get_session_status | Review recent agent sessions and audit events: what agents did, which data flowed, and any blocked actions. |
Set two environment variables, both issued or hosted by your organisation:
| Variable | Description |
|---|---|
SEALGATE_GATEWAY_URL | Base URL of your Sealgate Management API (e.g. https://dashboard.sealgate.ai). |
SEALGATE_API_KEY | Sealgate API key from your dashboard. |
If either is unset, every tool returns a clear configuration message instead of
failing, so registry probes and --help never crash.
Add the server to your MCP client. It runs over stdio via npx.
{
"mcpServers": {
"sealgate": {
"command": "npx",
"args": ["-y", "@sealgate/mcp"],
"env": {
"SEALGATE_GATEWAY_URL": "https://dashboard.sealgate.ai",
"SEALGATE_API_KEY": "your-sealgate-api-key"
}
}
}
}
{
"servers": {
"sealgate": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@sealgate/mcp"],
"env": {
"SEALGATE_GATEWAY_URL": "https://dashboard.sealgate.ai",
"SEALGATE_API_KEY": "your-sealgate-api-key"
}
}
}
}
Copy-paste configs also live in examples/.
# Run over stdio (default transport)
npx -y @sealgate/mcp
# Show usage
npx -y @sealgate/mcp --help
Set SEALGATE_MCP_TRANSPORT=http (with an optional PORT, default 3000) to
serve streamable HTTP instead of stdio.
Requires Bun.
bun install
bun run src/index.ts --help # run from source
bun test # run tests
bun run build # bundle to dist/
make ci # lint, typecheck, dead-code, and the rest
MIT. Copyright GPU-EVM LTD (Sealgate). See LICENSE.
FAQs
Sealgate MCP server: a thin MCP proxy to your organisation's Sealgate AI security gateway and data firewall.
The npm package @sealgate/mcp receives a total of 16 weekly downloads. As such, @sealgate/mcp popularity was classified as not popular.
We found that @sealgate/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.