proxyMode "direct" was a security hole (leaked secrets as plaintext env vars in .mcp.json) and bypassed all mcplocal features (gating, audit, RBAC, content pipeline, namespacing). Removed from schema, API, CLI, and all tests. Old configs with proxyMode are accepted but silently stripped via Zod .transform() for backward compatibility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 lines
140 B
SQL
3 lines
140 B
SQL
-- Remove proxyMode column (redundant — all traffic goes through mcplocal proxy)
|
|
ALTER TABLE "Project" DROP COLUMN IF EXISTS "proxyMode";
|