Free Beta Access

Stop Leaking Secrets to LLMs

NymAI acts as a privacy firewall for your AI workflows. Redact PII, API keys, and secrets locally before they leave your perimeter.

playground.js — NymAI Redaction Engine
Input (Unsafe)
1const userMessage = {
2 role: "user",
3 content: "Here is my API key for the prod DB:
4 sk-live-938475928374 and my email is
5 [email protected]. Please debug."
6};
7
8// Sending to ChatGPT...
check_circleOutput (Redacted)
1const safeMessage = {
2 role: "user",
3 content: "Here is my API key for the prod DB:
4 <REDACTED_KEY> and my email is
5 <REDACTED_EMAIL>. Please debug."
6};
7
8// Safe to send to LLM
lockSOC2 Compliant
verified_userGDPR Ready
laptop100% Local Processing

See NymAI in Action

Watch how seamlessly NymAI integrates into your daily workflow.

Secure Every Workflow

Seamless integration across your entire development stack. We meet you where you work.

extension

Chrome Extension

Automatically sanitize inputs in ChatGPT, Claude, and Gemini web interfaces instantly. Prevent accidental leakage of PII and API keys during casual browsing.

  • check_circleReal-time input scanning
  • check_circleCustomizable block lists
  • check_circleZero-config install
code

VS Code Extension

Protect your codebase secrets directly inside your IDE. Scan files on save and intercept copy-paste actions to external LLM chats.

  • check_circlePre-commit hook integration
  • check_circleLocal secrets detection
  • check_circleDiff view redaction
dns

MCP Proxy

Middleware for your custom AI agents and data pipelines. Route all your LLM traffic through a secure local proxy with a single config line.

  • check_circleOpenAI API compatible
  • check_circleFull audit logging
  • check_circleDocker container ready

Built for Developers,
by Developers.

NymAI is designed to be invisible until you need it. Install our core SDK and wrap your LLM calls in seconds.

  • checkZero-latency local regex engine
  • checkCustomizable PII detection rules
  • checkAudit logs for every redacted request
bash
# Install the NymAI Core SDK
npm install @nymai/core
# Start the local proxy server
npx nymai start --port 8080
javascript
import { NymAI } from '@nymai/core';
const nym = new NymAI({ apiKey: process.env.NYM_KEY });

// Wrap your existing OpenAI call
const response = await nym.openai.chat.completions.create({
  model: "gpt-4",
  messages: [{ role: "user", content: sensitiveInput }]
});