cmcpdelphiide

cmcpdelphiide is a skill for Claude Code, Codex from soporte-defontsoft/delphi-ide-remote-mcp. It costs 95 tokens per session (3,294 once invoked), scanned A, original, MIT.

A field guide for controlling a remote Windows computer running RAD Studio, the development environment for Delphi applications. It explains how to inspect projects, edit files, build software, and deploy it through a Delphi MCP server.

In plain words
What is it for?
Use it to discover allowed project locations and installed components, read and search files, make safe Delphi edits, build applications, and deploy them to Windows or Linux.
Why use it?
It prevents mistakes caused by confusing the remote computer’s paths, installed libraries, and build process with those on your own machine.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to discover allowed project locations and installed components, read and search files, make safe Delphi edits, build applications, and deploy them to Windows or Linux.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/soporte-defontsoft/delphi-ide-remote-mcp/cmcpdelphiide
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add soporte-defontsoft/delphi-ide-remote-mcp --skill cmcpdelphiide
Clone the repo
git clone --depth 1 https://github.com/soporte-defontsoft/delphi-ide-remote-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cmcpdelphiide

README.md
[![agentmods](https://agentmods.dev/badge/skills/soporte-defontsoft/delphi-ide-remote-mcp/cmcpdelphiide/github.svg)](https://agentmods.dev/skills/soporte-defontsoft/delphi-ide-remote-mcp/cmcpdelphiide)
Your own site
<a href="https://agentmods.dev/skills/soporte-defontsoft/delphi-ide-remote-mcp/cmcpdelphiide"><img src="https://agentmods.dev/badge/skills/soporte-defontsoft/delphi-ide-remote-mcp/cmcpdelphiide/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cmcpdelphiide

Your own site · 80×15
<a href="https://agentmods.dev/skills/soporte-defontsoft/delphi-ide-remote-mcp/cmcpdelphiide"><img src="https://agentmods.dev/badge/skills/soporte-defontsoft/delphi-ide-remote-mcp/cmcpdelphiide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,294 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00095 $0.03294
Opus 5 $0.00048 $0.01647
Sonnet 5 $0.00019 $0.00659
Haiku 4.5 $0.00010 $0.00329

Measured 10d ago against content hash ced694a59f97, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

cmcpdelphiide scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

`curl -H "Authorization: Bearer $TOKEN" -o file "http://host:port/files?path=..."`.
skills/cmcpdelphiide/SKILL.md · 232 lines

How it starts

The opening of the file, as written. The whole thing — 232 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Delphi IDE Remote MCP - field guide for agents

You are talking to a Windows machine that has RAD Studio installed. The projects, the compiler, the devices and the files all live THERE. You build, edit, deploy and drive apps through tools; you never need Delphi on your side.

First contact (always, in this order)

  1. delphi_workspace - your allowed roots, your access level, and the path model. Server paths use virtual drive units: srvd:\..., srvc:\.... They only exist inside this MCP. Always send paths in that form; never invent local-looking paths of your own.
  2. delphi_components - what the server's RAD Studio has installed to program with (design packages, any install channel). Check BEFORE writing uses clauses for third-party libraries. Base RTL/VCL/FMX are always available and not listed. filter= narrows (e.g. filter=FMX).
  3. If a vault is announced in the instructions, vault_read its index - it holds the operator's conventions and project context.

Reading files and logs

  • delphi_read pages at 400 lines per call - read in RANGES.
  • delphi_search / delphi_list to locate; never read whole trees.
  • Big dumps (logcat, long outputs) have a file mode (out=): use it, then read the file in ranges or download it.
  • Getting a file onto YOUR machine (an installer, an .apk, a screenshot PNG, a long unit to grep locally): call delphi_fetch once and use the download field it returns - a GET /files?path=... on the same host:port as /mcp, with the same Authorization: Bearer header: curl -H "Authorization: Bearer $TOKEN" -o file "http://host:port/files?path=...". Verify with sha256sum against the X-File-SHA256 header. This is the standard way for any size; files over 4 MB answer with the link only. Inline base64 chunks (maxbytes<=1048576, loop offset until eof) are for clients without a shell.

Editing safely (delphi_edit)

  • Anchor edits: old must be copied EXACTLY from a fresh delphi_read, as small and unique as possible. An edit error is a diagnosis - re-read and fix the anchor; do not retry blindly.
  • Pascal traps: a method signature exists TWICE (interface + implementation); there are TWO uses clauses; one single end. at the file end. Half an edit is not an edit.
  • .fmx/.dfm are DATA, not code. The compiler only checks their text grammar - a wrong property name or enum value compiles fine and then crashes the form at load time on the target, silently. The server lints designer edits against tables generated from the framework's own metadata: an AVISO DESIGNER warning in the edit result is measured truth - fix it before building. FMX property spelling is not VCL: Size.Width (not Size.X), TextSettings.Font.Size (not Font.Size), TextSettings.HorzAlign = Center (not taCenter).
  • Binary designer files (TPF0 stream or $FF resource wrapper) are refused - they belong to the IDE. Do not try to work around it.
  • Prefer Align/anchors over absolute Position/Size in forms: absolute coordinates designed on a desktop form overflow phone screens.

Read the full file on GitHub · 232 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 232 lines · 95 tokens per session scan A ced694a59f97

Subscribe to this mod's changes

cmcpdelphiide is a skill published in the GitHub repository soporte-defontsoft/delphi-ide-remote-mcp (8 stars, last pushed 6d ago), licensed MIT. It adds 95 tokens to every session and 3,294 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.