Skip to main content

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

get_brand_scorecard is what makes this more than a text editor. Reading approval and escalation rates before proposing a change means the model is tuning against observed behavior rather than guessing at a threshold.

1. Mint a per-brand API key

The plaintext token is returned once. Store it securely — it cannot be retrieved later, only revoked and reissued.

2. Connect from Claude

Claude Code

Then in a session:
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 mistaken apply_config cannot reach another customer’s configuration.