Skip to main content
Glama
Edison-Watch

Sealgate MCP Server

by Edison-Watch

Sealgate MCP Server

MCP npm License: MIT

Der Model Context Protocol (MCP)-Server für Sealgate, die KI-Plattform zur Verhinderung von Datenlecks: ein Sicherheits-Gateway und eine Daten-Firewall, die zwischen KI-Agenten (Claude, ChatGPT, Cursor, Copilot) und den Daten und Tools Ihrer Organisation sitzen.

Dieser Server ist ein schlanker MCP-Proxy. Er leitet eine kleine Menge von Tool-Aufrufen an das eigene Sealgate-Gateway Ihrer Organisation weiter, das Sie mit zwei Umgebungsvariablen konfigurieren. Es gibt keinen gemeinsamen öffentlichen Sealgate-Endpunkt: Jede Organisation betreibt ihr eigenes Gateway, daher geben Sie die URL und den Schlüssel an.

Werkzeuge

Werkzeug

Funktion

list_mcp_servers

Listet die von Ihrem Sealgate-Gateway verwalteten MCP-Server auf, mit Zugriffskontroll-Klassifizierung und Verbindungsstatus.

get_session_status

Überprüft aktuelle Agenten-Sitzungen und Audit-Ereignisse: was Agenten getan haben, welche Daten geflossen sind und welche Aktionen blockiert wurden.

Related MCP server: SINT Protocol

Konfiguration

Legen Sie zwei Umgebungsvariablen fest, die beide von Ihrer Organisation ausgestellt oder gehostet werden:

Variable

Beschreibung

SEALGATE_GATEWAY_URL

Basis-URL Ihrer Sealgate-Management-API (z. B. https://dashboard.sealgate.ai).

SEALGATE_API_KEY

Sealgate-API-Schlüssel aus Ihrem Dashboard.

Wenn eine der beiden nicht gesetzt ist, gibt jedes Tool eine klare Konfigurationsmeldung zurück, anstatt zu scheitern, sodass Registry-Prüfungen und --help nie abstürzen.

Installation

Fügen Sie den Server zu Ihrem MCP-Client hinzu. Er läuft über stdio via npx.

Claude Desktop, Cursor

{
    "mcpServers": {
        "sealgate": {
            "command": "npx",
            "args": ["-y", "@sealgate/mcp"],
            "env": {
                "SEALGATE_GATEWAY_URL": "https://dashboard.sealgate.ai",
                "SEALGATE_API_KEY": "your-sealgate-api-key"
            }
        }
    }
}

VS Code

{
    "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"
            }
        }
    }
}

Konfigurationen zum Kopieren und Einfügen finden Sie auch in examples/.

Verwendung

# Run over stdio (default transport)
npx -y @sealgate/mcp

# Show usage
npx -y @sealgate/mcp --help

Setzen Sie SEALGATE_MCP_TRANSPORT=http (mit einem optionalen PORT, Standardwert 3000), um streambares HTTP anstelle von stdio bereitzustellen.

Entwicklung

Erfordert 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

Lizenz

MIT. Copyright GPU-EVM LTD (Sealgate). Siehe LICENSE.

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Open-source MCP proxy that enforces security policies, content scanning, and audit logging between AI agents and tool servers
    25
    AGPL 3.0
  • A
    license
    A
    quality
    A
    maintenance
    Security-enforcing MCP proxy that sits between an AI agent and any number of downstream MCP servers, intercepting every tool call through a capability-token policy gateway that can allow, deny, or escalate to human approval before the call reaches any real tool. It also exposes built-in operator tools for approval workflows, audit trail queries, token management, voice/HUD output, and hierarchical
    21
    12
    Apache 2.0
  • A
    license
    Not graded
    quality
    A
    maintenance
    Security gateway for MCP tool calls. Sits between your LLM client and MCP servers, enforcing per-tool policies (allow/block/approve/read-only), logging every call, and pausing dangerous operations for human approval in terminal or Slack.
    2
    1
    MIT
  • A
    license
    B
    quality
    A
    maintenance
    A governance proxy for AI tools — every MCP/agent tool call is policy-gated, secret-redacted, and written to a hash-chained, offline-verifiable audit trail.
    13
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.

  • Security firewall for AI agents — scans MCP calls for injection, secrets, and risks.

  • Scans MCP servers for tool poisoning, prompt injection and supply chain risks.

View all MCP Connectors

Latest Blog Posts

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/Edison-Watch/sealgate-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server