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.
NymAI acts as a privacy firewall for your AI workflows. Redact PII, API keys, and secrets locally before they leave your perimeter.
Watch how seamlessly NymAI integrates into your daily workflow.
Watch Chrome Extension Demo
Watch VS Code Extension Demo
Watch MCP Proxy Configuration
Seamless integration across your entire development stack. We meet you where you work.
Automatically sanitize inputs in ChatGPT, Claude, and Gemini web interfaces instantly. Prevent accidental leakage of PII and API keys during casual browsing.
Protect your codebase secrets directly inside your IDE. Scan files on save and intercept copy-paste actions to external LLM chats.
Middleware for your custom AI agents and data pipelines. Route all your LLM traffic through a secure local proxy with a single config line.
NymAI is designed to be invisible until you need it. Install our core SDK and wrap your LLM calls in seconds.
# Install the NymAI Core SDK
npm install @nymai/core
# Start the local proxy server
npx nymai start --port 8080import { 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 }]
});