惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
P
Proofpoint News Feed
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
量子位
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
We shipped an MCP Server for accurate AI fixes in KMP apps
Olwethu Piss · 2026-04-27 · via DEV Community

If you've ever pasted a crash log into your AI assistant and gotten back "try moving work off the main thread" — you know the problem.

Your AI assistant has not a single clue what's actually running in your app. No dependency graph, no session data, no component timings. So it guesses.
And sometimes it's right.

That's what we kept hearing from Android and KMP teams. And it's what we built the Kotzilla MCP Server to fix.

The problem

Android and KMP teams spend hours on production issues that should take minutes. An ANR shows up in Play Console.
Someone digs through logs, pastes a stack trace into Claude or Cursor, and gets a suggestion that doesn't account for the actual dependency chain causing the problem.

For KMP teams it's worse.
A crash only shows up on iOS. Your monitoring tool has nothing useful for that target. Your AI assistant has even less. So the debugging process is mostly educated guesses while the issue sits in production.

*The root cause is almost always the same: your AI assistant is working blind. *

It sees your code but not your runtime. It knows your architecture on paper but not how it behaves under real user sessions.

What we built

The Kotzilla MCP Server connects your AI coding assistant to the Kotzilla Platform.
It gives your assistant the same structural and runtime context Kotzilla captures from real user sessions — dependency graphs, resolution timings, crashes, component behaviour — together with a knowledge base of proven fix patterns for Android and KMP projects.

The result: your assistant can go from detecting an issue to producing a concrete fix, all without leaving your editor.

How it works

Once connected, you ask your assistant questions in plain language:

What are the main performance issues in my app?
Why is HomeScreen slow?
Show me the crashes on the iOS target of my CMP app
Is version 1.2.1 performing better than 1.1.5?

Your assistant gets back real data. It gets back dependency resolution trees with timings, symbolicated stack traces, component-level performance data across every KMP target.
And uses it to give you a specific answer, not a guess.

Ask it to fix the issue and it retrieves the fix pattern for that specific issue type, reads your code, and applies the changes across files under your review.

A few things you can ask it right now

Setting up

One natural language prompt registers your app, reads your project structure, generates kotzilla.json, updates your version catalog and Gradle plugin, and adds the monitoring() call to your Koin setup.

After that, your assistant is connected to real session data from your app. You don't need a new dashboard, context switching, or copy-pasting between tools.

Works with the tools you already use
Claude Code, Cursor, Windsurf, the Android Studio MCP panel, and any LLM-powered terminal assistant.

Try it

Free to get started.
👉 doc.kotzilla.io/docs/discover/mcpServer

If you try it, we'd love to hear how it holds up in the wild, especially on KMP projects.

Drop a comment below.
— The Kotzilla team