Copy the CLI commands or paste an AI prompt into Cursor, Copilot, or your assistant of choice.
Copy this prompt to your AI code editor (Cursor, Copilot, etc.) to set up Private Connect automatically:
Copy any prompt below into Cursor, Copilot, or your AI assistant to get step-by-step instructions for that use case.
Make your local app reachable via a public URL so Stripe, GitHub, etc. can send webhooks to it.
Connect to your team's staging Postgres (or any database) from your local machine via Cursor.
Give a teammate access to the same services you're connected to, with one command each.
Generates the MCP configuration for your editor and prints setup instructions.
Add this to your .cursor/mcp.json in the project root, or configure it globally in Cursor settings.
{
"mcpServers": {
"private-connect": {
"command": "connect",
"args": ["mcp"],
"env": {}
}
}
} Restart Cursor after adding the config. The MCP server runs locally via the connect CLI.
Add this to your Claude Desktop MCP configuration file.
{
"mcpServers": {
"private-connect": {
"command": "connect",
"args": ["mcp"]
}
}
} Config file location:
macOS ~/Library/Application Support/Claude/claude_desktop_config.json Linux ~/.config/Claude/claude_desktop_config.json Once connected, your AI assistant has access to these MCP tools.
Ask your AI about your infrastructure in natural language.
Control what AI agents can do in your workspace with a policy file. Every action is logged for audit.
The broker intercepts tool calls and enforces your policy before they execute. Blocked actions are logged with the reason.
Build your own AI integrations programmatically.
import { PrivateConnect } from '@privateconnect/sdk'; const pc = new PrivateConnect({ apiKey: process.env.PRIVATECONNECT_API_KEY }); const db = await pc.connect('postgres-prod'); console.log(db.connectionString); const gpuAgents = await pc.agents.findByCapability('gpu'); await pc.agents.sendMessage(gpuAgents[0].id, { action: 'train' });