ZedGi is presented as a TCP-to-HTTP proxy that lets applications running in HTTP-only serverless or edge environments connect to traditional TCP databases like Redis, Postgres, and MySQL over HTTPS. The service is designed for cases where runtimes such as Cloudflare Workers, Vercel Edge, and other fetch-based environments cannot open raw TCP sockets. According to the documentation, developers register their database services once and then send signed HTTPS requests to a ZedGi endpoint. ZedGi authenticates the request, routes it to a bridge proxy, opens the underlying TCP connection to the target database, executes the requested command or query, and returns results as JSON.

ZedGi is described as supporting multiple integration paths, including TypeScript/JavaScript and Python SDKs and a raw HTTPS API. The sources state that database credentials are supplied at call time: the client encrypts credential payloads before they leave the application, while ZedGi stores only service metadata such as host, port, and service type, plus an optional caller IP allowlist. Security features cited include API keys, request signing to prevent tampering and replay, and transient decryption at the bridge node to establish the TCP connection.