Config Connector (MCP)
Manage a brand’s response-automation config from Claude. The MCP server is the already-running engine API — there is no separate process to deploy.
The transport is POST-only;
GET returns 405 and compliant clients fall back to POST.
Auth accepts either a per-brand API key, which scopes Claude to that brand’s tenant, or a
global admin key.
Tools
apply_config requires a change_note and supports expected_config_version for optimistic
concurrency — so two people editing the same brand can’t silently overwrite each other.
The natural loop
1. Mint a per-brand API key
2. Connect from Claude
Claude Code
List brands, read that brand’s config and scorecard, and propose lowering the review-gate confidence to 0.7.
Claude Desktop
Bridge the remote HTTP server to stdio:Scoping
Prefer a per-brand key over an admin key. The brand key confines every tool call to that brand’s tenant, so a mistakenapply_config cannot reach another customer’s configuration.
Related
- Control plane — the versioned config pipeline behind
apply_config - Configuration — what lives in
deterministic_config - Workflow Studio — the UI equivalent