Skip to main content

MCP server for Pascal/Delphi/Lazarus compilation and execution with Claude

Project description

Claude Pascal MCP Server

An MCP (Model Context Protocol) server that lets Claude compile, run, and interact with Pascal/Delphi desktop applications. Supports Free Pascal (fpc), Delphi 32-bit (dcc32), and Delphi 64-bit (dcc64) compilers.

Features

  • Compiler Detection — automatically finds Pascal compilers on your system (PATH + known install locations)
  • Compile — compile single-file Pascal source or multi-file Delphi projects
  • Run — compile and execute console programs, capturing output
  • Launch GUI Apps — compile and launch VCL/FMX applications in background (without stealing focus)
  • Project Templates — generate proper Delphi project structure (DPR + PAS + DFM) automatically
  • Form Parser — read and understand DFM/FMX/LFM form files
  • Window Screenshots — capture running desktop app windows (non-intrusive, no focus stealing)
  • Windows App Interaction — click, type text, and send keyboard shortcuts to desktop app windows
  • Android Device Interaction — full ADB support: screenshots, tap, swipe, type, key events, app management, file transfer
  • IDE Observer — capture RAD Studio/Delphi/Lazarus IDE screenshots and read compiler errors
  • Preview Bridge — live preview of running Pascal apps through Claude's preview system
  • FPC Installer — download and install Free Pascal if no compiler is available

Tools

Tool Description
get_compiler_info Detect available compilers and show versions
compile_pascal Compile single-file source code
compile_delphi_project Generate + compile a project from templates — vcl, fmx (cross-platform incl. Android), console, or fpc
build_dproj Build an existing .dproj via MSBuild + rsvars. Auto-resolves PAServer profile, chains Deploy, deep-cleans the dproj's actual output dirs, supports iOS deploy-manifest synthesis. See §build_dproj details below
run_pascal Compile and execute console programs
launch_app Compile and launch GUI app in background
check_syntax Syntax check only (no linking)
parse_form Parse DFM/FMX/LFM form files
list_remote_profiles List PAServer Connection Profiles registered for iOS/macOS/Linux builds
check_ios_deploy Inspect a .dproj for the iOS DeployFile entries required by /t:Deploy
screenshot_app Capture screenshot of a running app window
list_app_windows List visible windows on the desktop
app_click Click on a Windows app window at screenshot pixel coordinates
app_type Type text into a Windows app window
app_key Send key or shortcut (e.g., ctrl+a, enter) to a Windows app
focus_ide Restore + foreground the Delphi/Lazarus IDE window
observe_ide Capture IDE screenshot and scan project files
read_ide_errors Read source code around compiler error locations
list_project_files List source files in a Delphi/Lazarus project
adb_devices List connected Android devices with model and version
adb_device_info Get detailed info for a specific Android device
adb_screenshot Capture Android device screen
adb_tap Tap a point on the Android device screen
adb_swipe Swipe on the Android device screen
adb_type_text Type text on the Android device
adb_key Send a key event (home, back, enter, etc.) to Android device
adb_install Install an APK on the Android device
adb_list_packages List installed packages on the Android device
adb_launch_app Launch an app on the Android device
adb_stop_app Force-stop an app on the Android device
adb_push Push a file to the Android device
adb_pull Pull a file from the Android device
setup_fpc Download and install Free Pascal (fallback)

build_dproj details

build_dproj builds an existing real .dproj (multi-unit, with its own search paths, defines, resources, deployment) via MSBuild + rsvars.bat. It does the things ad-hoc shell calls to MSBuild keep getting wrong:

  • Reads the dproj's own output paths. Calls MSBuild against a tiny generated helper .proj that imports the dproj and emits DCC_ExeOutput / DCC_DcuOutput / DCC_BplOutput as the dproj's own evaluator sees them. Uses those for deep-clean targeting and artifact lookup — so ..\bin\$(Platform)\$(Config) layouts work the same as the default.
  • Auto-resolves the PAServer Connection Profile for iOS / macOS / Linux builds by reading HKCU\Software\Embarcadero\BDS\<ver>\RemoteProfiles. When multiple compatible profiles exist (e.g. a PRODUCTION and STAGING Linux profile) it refuses to silently pick — caller has to pass remote_profile=<name> explicitly. Stops you accidentally deploying to production.
  • Chains /t:Build;Deploy automatically on Android / iOS / macOS / Linux so the build actually produces an APK or .app, not just an intermediate libProj.so or object file. Pass deploy=False to opt out.
  • Detects + optionally synthesizes iOS DeployFile entries that the IDE writes on first deploy. Without these 4 per-Config-Platform entries (ProjectiOSEntitlements, ProjectiOSInfoPList, ProjectiOSLaunchScreen, ProjectOutput) /t:Deploy ships nothing and codesign fails. synthesize_ios_manifest=True writes them after a timestamped .bak backup.
  • Deep-cleans the platform's actual output dirs before Rebuild/Clean on staging-based platforms (Android / iOS / macOS / Linux). MSBuild's own Clean leaves PAClient / PAServer staging in place, which is the root cause of "I changed the code but the APK didn't update" reports. Filters paths outside the project tree as a safety guard — never wipes the shared system BPL dir.

Working command-line recipe (matches what build_dproj does for you)

rsvars.bat
MSBuild <Proj>.dproj /t:Build  /p:Config=<Cfg> /p:Platform=<Plat>
MSBuild <Proj>.dproj /t:Deploy /p:Config=<Cfg> /p:Platform=<Plat> /p:Profile=<ConnectionProfile>

build_dproj collapses this into a single call: build_dproj(dproj_path, platform=<Plat>, config=<Cfg>).

Pre-flight check list

If a build fails, walk through these before assuming the MCP is broken:

  • For iOS: did you ever IDE-deploy this project to this Config × Platform? If not, run check_ios_deploy(dproj_path, config, platform) and set synthesize_ios_manifest=True on the build.
  • For iOSSimARM64: is the iPhoneSimulator SDK imported in Tools → Manage Platforms? (Importing the iPhoneOS device SDK doesn't satisfy the simulator link — ld: file not found: /usr/lib/libiconv.dylib.)
  • For any PAServer platform: list_remote_profiles() shows what's registered; sidecar .profile files must exist at %APPDATA%\Embarcadero\BDS\<ver>\<name>.profile for /t:Deploy to read them.
  • For Android: is adb on PATH? Is the device authorized (adb_devices)?

Preview Bridge

The preview bridge lets Claude see and interact with running Pascal desktop applications through its web-based preview system. It serves live screenshots of desktop app windows as a web page.

How it works

Claude Preview Tools (preview_start, preview_screenshot, preview_click)
        | HTTP
        v
Preview Bridge Server (Python/Starlette)
   /               -> HTML page with live screenshot viewer
   /api/screenshot  -> PNG of target window
   /api/controls    -> enumerate child controls with positions
   /api/click       -> click at coordinates or by control hwnd
   /api/type        -> send keystrokes to target window
   /api/move        -> move window to screen position
   /api/resize      -> resize window
        | Win32 PrintWindow API
        v
Running Pascal Desktop Application

API Endpoints

Route Method Description
/ GET HTML page with auto-refreshing screenshot viewer
/api/screenshot GET PNG screenshot of target window
/api/windows GET List visible windows
/api/target POST Set target window by title
/api/controls GET Enumerate child controls (buttons, inputs, etc.)
/api/click POST Click by coordinates or direct control hwnd
/api/type POST Send text or key combos (e.g., ctrl+a, enter)
/api/drag POST Drag from one point to another
/api/move POST Move target window
/api/resize POST Resize target window
/api/window-info GET Window position, size, and client area offset
/api/console GET Console output from launched apps
/api/launch POST Launch an executable

Click Methods

The click endpoint supports three modes, from most to least reliable:

  1. Direct control click ({"hwnd": "12345"}) — sends BM_CLICK directly to a control handle. Works regardless of DPI, monitors, or foreground state. Get hwnds from /api/controls.
  2. Client-area coordinates ({"x": 200, "y": 142, "client": true}) — uses Win32 ClientToScreen for proper DPI handling.
  3. Window-relative coordinates ({"x": 312, "y": 261}) — raw coordinates in the screenshot image space.

Windows App Interaction

The app_click, app_type, and app_key tools let Claude interact with running Windows desktop applications.

Workflow

  1. Take a screenshot with screenshot_app to see the current UI
  2. Identify pixel coordinates of the target element (button, text field, etc.)
  3. Use app_click with those coordinates to click
  4. Use app_type to enter text into a focused field
  5. Use app_key to send keyboard shortcuts (enter, ctrl+a, alt+f4, etc.)

Clicks use PostMessage with automatic child window targeting, so they reach the correct control. Typing and key events use SendInput for full Unicode and modifier support.

Android Device Interaction (ADB)

Full Android device interaction via ADB. All tools accept an optional device serial number — auto-selects when only one device is connected.

Device Management

  • adb_devices — list connected devices with model, Android version, screen size
  • adb_device_info — detailed info for a specific device

Screenshots and UI Automation

  • adb_screenshot — capture the device screen
  • adb_tap / adb_swipe — touch interaction at pixel coordinates
  • adb_type_text — type text (auto-escapes for adb shell)
  • adb_key — send key events with aliases: home, back, enter, menu, power, volume_up, volume_down, tab, delete, space, escape, app_switch

App Management

  • adb_install — install APK files
  • adb_list_packages — list installed packages (with optional filter)
  • adb_launch_app — launch an app by package name
  • adb_stop_app — force-stop an app

File Transfer

  • adb_push — push files from PC to device
  • adb_pull — pull files from device to PC

Project Templates

The compile_delphi_project tool generates proper Delphi project structure automatically. You specify components and events, and it creates the correct DPR, PAS, and DFM files.

Templates automatically handle:

  • Modern Delphi (RAD Studio): namespaced units (Vcl.Forms, System.SysUtils)
  • Legacy Delphi (Delphi 7): non-namespaced units (Forms, SysUtils)
  • Form definitions (DFM) with proper component declarations
  • Event handler wiring between DFM and PAS files

Example

compile_delphi_project(
  project_name="HelloWorld",
  form_caption="My App",
  components='[{"type": "TButton", "name": "btnHello", "caption": "Click Me",
                "left": 100, "top": 100, "width": 120, "height": 35,
                "event": "btnHelloClick"}]',
  events='[{"name": "btnHelloClick", "body": "ShowMessage(\'Hello!\');"}]',
  compiler="C:\\Path\\To\\dcc64.exe"
)

This generates:

  • HelloWorld.dpr — project file with proper uses clause
  • uMain.pas — unit with form class, component declarations, event handlers
  • uMain.dfm — form definition with component properties

Installation

Prerequisites

  • Python 3.11+
  • uv package manager
  • A Pascal compiler (Free Pascal, Delphi, or RAD Studio)

Option 1 — Run from PyPI (recommended)

Once a release is published to PyPI, no clone is needed:

uvx --from claude-pascal-mcp pascal-mcp

Option 2 — Run straight from GitHub (no PyPI required)

uvx --from git+https://github.com/tina4stack/claude-pascal-mcp pascal-mcp

Pin to a tag for reproducibility: git+https://github.com/tina4stack/claude-pascal-mcp@v0.1.0.

Option 3 — Local development clone

git clone https://github.com/tina4stack/claude-pascal-mcp.git
cd claude-pascal-mcp

# Install dependencies
uv sync

# Run the MCP server (stdio mode)
uv run pascal-mcp

# Run the preview bridge (HTTP mode)
uv run pascal-preview

Register with Claude Code

PyPI install:

claude mcp add --transport stdio pascal-dev -- uvx --from claude-pascal-mcp pascal-mcp

Git install:

claude mcp add --transport stdio pascal-dev -- uvx --from git+https://github.com/tina4stack/claude-pascal-mcp pascal-mcp

Local clone:

claude mcp add --transport stdio pascal-dev -- uv run --directory /path/to/claude-pascal-mcp pascal-mcp

Or add to your project's .mcp.json — pick the form that matches how you installed:

{
  "mcpServers": {
    "pascal-dev": {
      "command": "uvx",
      "args": ["--from", "claude-pascal-mcp", "pascal-mcp"]
    }
  }
}
{
  "mcpServers": {
    "pascal-dev": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/tina4stack/claude-pascal-mcp", "pascal-mcp"]
    }
  }
}
{
  "mcpServers": {
    "pascal-dev": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/claude-pascal-mcp", "pascal-mcp"]
    }
  }
}

Register with Claude Desktop

Add to your claude_desktop_config.json (pick the form matching your install):

{
  "mcpServers": {
    "pascal-dev": {
      "command": "uvx",
      "args": ["--from", "claude-pascal-mcp", "pascal-mcp"]
    }
  }
}
{
  "mcpServers": {
    "pascal-dev": {
      "command": "uv",
      "args": ["run", "--directory", "C:/path/to/claude-pascal-mcp", "pascal-mcp"]
    }
  }
}

Releasing

Maintainer notes — cutting a new release publishes to PyPI automatically.

  1. Bump version in pyproject.toml.
  2. Commit and tag: git tag v0.1.0 && git push origin v0.1.0.
  3. GitHub Actions (.github/workflows/publish.yml) builds the sdist + wheel, publishes to PyPI via Trusted Publishing, and attaches the artifacts to a GitHub Release.

One-time PyPI Trusted Publisher setup (required before the first release):

  • Create the project on pypi.org (or reserve it via a first manual uv publish).
  • Under Project → Publishing → Add a new publisher, configure GitHub Actions:
    • Owner: tina4stack
    • Repository: claude-pascal-mcp
    • Workflow: publish.yml
    • Environment: pypi
  • In the GitHub repo, create an environment named pypi (Settings → Environments).

No API tokens needed — OIDC handles auth.

Preview Bridge Setup

Add to .claude/launch.json in your project root:

{
  "version": "0.0.1",
  "configurations": [
    {
      "name": "pascal-preview",
      "runtimeExecutable": "/path/to/claude-pascal-mcp/.venv/Scripts/pythonw.exe",
      "runtimeArgs": ["-m", "pascal_mcp.preview_bridge"],
      "port": 18080,
      "autoPort": true
    }
  ]
}

Then in Claude Code, use preview_start("pascal-preview") to open the preview panel.

Supported Compilers

The server automatically detects compilers in this priority order:

  1. Free Pascal (fpc) — open source, cross-platform
  2. Delphi 64-bit (dcc64) — RAD Studio command-line compiler
  3. Delphi 32-bit (dcc32) — RAD Studio / Delphi 7 command-line compiler

You can also specify a full path to any compiler executable:

compile_pascal(source, compiler="C:\\Program Files (x86)\\Embarcadero\\Studio\\37.0\\bin\\dcc64.exe")

Detection checks the system PATH first, then known installation directories:

  • C:\FPC\*\bin\*\fpc.exe
  • C:\Lazarus\fpc\*\bin\*\fpc.exe
  • C:\Program Files (x86)\Embarcadero\Studio\*\bin\dcc*.exe

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

claude_pascal_mcp-0.9.1.tar.gz (80.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

claude_pascal_mcp-0.9.1-py3-none-any.whl (81.3 kB view details)

Uploaded Python 3

File details

Details for the file claude_pascal_mcp-0.9.1.tar.gz.

File metadata

  • Download URL: claude_pascal_mcp-0.9.1.tar.gz
  • Upload date:
  • Size: 80.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for claude_pascal_mcp-0.9.1.tar.gz
Algorithm Hash digest
SHA256 c9c0eba5091b02ab37f55415ddce042515340f1aaec67e4b4a0cb52155521db2
MD5 1ba1ebfb552ecc2d659a42087ef868a3
BLAKE2b-256 0ff52bb0d33a195dc334dfe3d313aa0677a9c2d896c6d61d9112d4a56c1e6595

See more details on using hashes here.

Provenance

The following attestation bundles were made for claude_pascal_mcp-0.9.1.tar.gz:

Publisher: publish.yml on tina4stack/claude-pascal-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file claude_pascal_mcp-0.9.1-py3-none-any.whl.

File metadata

File hashes

Hashes for claude_pascal_mcp-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 33cefce90916420b4fc81d00ad5e9abe77c2a8fa3882c0684e7a3ad5b39e2bbb
MD5 d6b2af0d5deefb671debadcffa308dc9
BLAKE2b-256 d2d7e78f770424bd94294ea755fa19d604cfcbc177c735f0c0f24a5ba709eb65

See more details on using hashes here.

Provenance

The following attestation bundles were made for claude_pascal_mcp-0.9.1-py3-none-any.whl:

Publisher: publish.yml on tina4stack/claude-pascal-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page