Everything here runs locally in your browser. Hosts, ports, usernames and passwords are never sent anywhere — there are no network calls in this tool, not even analytics. Safe to use with real production credentials.
Connection details
Postgres itself (libpq) doesn't pool via the URI — only connect_timeout is a real libpq parameter. The other two are Prisma's connection-URL convention.
Redis clients (ioredis, node-redis) don't pool via the URI — pool at the application layer if you need one.
Elasticsearch node URLs don't carry a database/index path or pool params — clients manage their own internal connection pool.
Connection string
Alternate form
Reverse mode — parse an existing connection string
Paste a full connection string/URI and it will be parsed into the fields above, auto-detecting the driver.