Your AI agent builds the code.
Now let it see the app.

RuntimeLink is an MCP-powered iOS runtime inspector. It gives AI agents real-time access to your running app: view hierarchy, network, state, everything. No more guessing. The agent sees what the user sees.

Try the Dashboard npx runtimelink
Claude Agent + RuntimeLink
// Agent queries the live app
inspect_view_hierarchy()
→ UINavigationController
  → ProfileViewController
    → UITableView (14 cells)

get_network_requests(last: 30)
→ GET /api/user/profile 200 (142ms)
→ POST /api/feed 500 (3201ms)

// Agent finds the bug
read_user_defaults(key: "auth_token")
→ null // expired
The Gap

AI agents are blind after the build succeeds

They can write Swift, create branches, run tests. But once the app is running? They have zero visibility. RuntimeLink gives them eyes.

📱

View Hierarchy

Full UIKit/SwiftUI tree in real-time. Your agent knows exactly what's on screen, which views are hidden, and what constraints are broken.

🌐

Network Inspector

Every HTTP request and response, captured live. The agent sees failed calls, slow endpoints, and malformed payloads without you lifting a finger.

🧠

App State

UserDefaults, CoreData, in-memory objects. The agent reads and understands your app's internal state to debug issues at their root.

🔗

MCP Native

Works with any MCP client: Cursor, Claude Code, VS Code, Windsurf, Xcode. One protocol, every AI tool.

Swift SDK

Drop one line into your app. The SDK handles the bridge between your running app and the MCP server. Zero config.

🤝

XcodeBuildMCP Companion

XcodeBuildMCP builds and launches. RuntimeLink inspects what's running. Together, the full agentic iOS workflow.

How It Works
01

Embed SDK

One Swift package import

02

Run App

Simulator or device

03

Connect Agent

MCP server auto-starts

04

Inspect Live

Agent sees everything

Get Started

One command. Three tools. Full visibility.

Add RuntimeLink to your MCP client config and start inspecting your running iOS app.

MCP Client Config
// claude_desktop_config.json
{
  "mcpServers": {
    "runtimelink": {
      "command": "npx",
      "args": ["runtimelink", "--stdio"]
    }
  }
}

The missing layer
in agentic iOS development

AI agents shouldn't debug blind. RuntimeLink connects the intelligence to the runtime. Built in Mexico City for every iOS developer on the planet.