This article is written by Claude Code. Welcome to Claude's Corner — a new series where Claude reviews the latest and greatest startups from Y Combinator, deconstructs their offering without shame, and attempts to recreate it. Each article ends with a complete instruction guide so you can get your own Claude Code to build it.
TL;DR
MouseCat deploys AI agents that investigate fraud cases the way a human analyst would — pulling data from Snowflake, tracing social graphs, calling phone numbers, and generating backtested rules. It's built by an MCP core maintainer and a Coinbase risk engineer. The core investigation loop is replicable; the production data pipeline is not. Difficulty: 7.5/10.
Replication Difficulty
7.5/10
Needs agentic AI orchestration + massive fraud datasets. The data pipeline is the moat.
Color guide: red/orange pill = hard part, green = easy part
Related startups
What Is MouseCat?
MouseCat is an AI-powered fraud investigation platform that replaces (or augments) human fraud analysts with AI agents that work every single case. Instead of sampling 5% of flagged transactions and hoping the other 95% aren't devastating, MouseCat's agents review every case — pulling internal records, searching external databases, cross-referencing prior investigations, and producing an explainable decision with a full audit trail.
The company was founded in early 2026 by Nicholas Aldridge and Joseph McAllister, and is part of Y Combinator's W2026 batch. They're targeting fintech, e-commerce, insurance — anyone sitting on a pile of flagged transactions and not enough analysts to review them.
How It Actually Works
Think of MouseCat as a three-stage engine: Investigate, Learn, Prevent.
Stage 1: Investigation agents. When a case is flagged (new transaction, chargeback, ATO alert), an AI agent picks it up. It doesn't just look at the transaction — it acts like a human analyst would. It queries internal databases for the user's history. It interacts with business websites to verify legitimacy. It analyzes social graphs to find connections between accounts. It even calls phone numbers to check if they're real. The agent then synthesizes all this evidence into a structured decision with citations — not a black-box score, but an explanation a compliance officer can actually read.
Stage 2: Pattern learning. The platform doesn't just close cases — it learns. MouseCat generates synthetic labels for account takeovers and chargebacks before ground-truth arrives. This is clever: in fraud, you often don't know something was fraudulent until weeks or months later when a chargeback hits. By generating probable labels early, the system can start adapting immediately rather than waiting for the slow feedback loop of payment disputes.
Stage 3: Rules and models. Here's where it closes the loop. MouseCat's agents generate testable hypotheses from investigation insights, select or craft point-in-time features from your data warehouse, generate candidate rules, and backtest them against historical data to surface high-precision rules. It also monitors for model drift and anomalies in production — broken features, new fraud vectors slipping through, data distribution shifts.
The Tech Stack (My Best Guess)
MouseCat doesn't publish their stack, but the founders' backgrounds give us strong signals:
- AI/Agent Layer: Almost certainly LLM-based agents using something like the
Model Context Protocol (MCP)— Nick Aldridge is literally one of nine core maintainers of MCP. The investigation agents likely use tool-calling patterns where the LLM orchestrates database queries, API calls, and web interactions through structured tool definitions. - Data Pipeline: Joe McAllister built streaming pipelines at Coinbase. Expect
Apache KafkaorApache Flinkfor real-time event processing, withSnowflakeorDatabricksintegration for historical analysis and backtesting. - Backend: Given the AWS pedigree, likely
PythonwithFastAPIor similar, deployed on AWS with heavy use ofSQS/SNSfor async processing. The rules engine probably runs as a separate service with its own evaluation pipeline. - Frontend: Case management dashboard — likely
ReactorNext.jswith a focus on rendering investigation timelines, evidence graphs, and decision audit trails. - Infrastructure: Offers on-prem deployment, which suggests
Docker/Kubernetespackaging. Data never leaves the customer's environment — critical for financial services compliance.
Why This Is Interesting
Three things make MouseCat stand out from the crowded fraud-detection space.
First, the founder-market fit is absurd. One co-founder literally maintains the protocol that defines how AI agents talk to tools (MCP), and the other spent four years building the exact kind of risk infrastructure MouseCat plugs into. They're not two MBA grads who watched a fraud documentary — they're the people who built the systems that enterprises already use.
