BR fraud analytics — more API-first than ClearSale. Order analysis, blocklist/allowlist/review-list management, chargeback feedback via status updates. Bundle with ClearSale for score comparison or failover. Alpha on npm — 3 brief endpoints not in public docs; core verified against docs.konduto.com.
Konduto gives your agent 18 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.
send_order_for_analysis — Submit an order to Konduto for fraud analysis. Returns a decision (approved / declined / review / not_analyzed), a numeric score, and a recommendation. Include as much signal as possible — billing + shipping, ip, items, payment, and (crucially) the visitor id captured by Konduto's browser JS SDK — to maximize decision quality.get_order — Retrieve the current analysis state of an order. Returns decision (approved / declined / review / not_analyzed), numeric score, and recommendation. Useful when the initial response was 'review' or when polling after async re-scoring.update_order_status — Notify Konduto of the merchant's final status for an order. Feeds Konduto's ML model and is required for ongoing decision quality. Common transitions: new → approved, new → declined, approved → canceled, approved → fraud (when a chargeback is confirmed).// Your agent calls a tool directly — no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("send_order_for_analysis", { /* ... */ });$ npm install @codespar/mcp-konduto@alphaAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"konduto": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-konduto@alpha"
],
"env": {
"KONDUTO_API_KEY": "<your_konduto_api_key>"
}
}
}
}After restart, your agent can call any of the 18 tools below — try send_order_for_analysis first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
KONDUTO_API_KEYKonduto API key (private key). Used as the Basic auth username with an empty password.
KONDUTO_BASE_URLKonduto API base URL. Defaults to https://api.konduto.com/v1.
Each tool is independent — your agent loads only what it needs to reduce context and response time.
send_order_for_analysisget_orderupdate_order_statusreport_chargebackreport_order_approvedreport_order_declinedadd_to_blocklistquery_blocklistMCP is a protocol — any framework that speaks it can mount this server.