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.
npx skills add soporte-defontsoft/delphi-ide-remote-mcp --skill cmcpdelphiidegit clone --depth 1 https://github.com/soporte-defontsoft/delphi-ide-remote-mcpWrote 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.
[](https://agentmods.dev/skills/soporte-defontsoft/delphi-ide-remote-mcp/cmcpdelphiide)<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.
<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>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.
| Model | Per session | Once 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 |
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=..."`. 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)
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.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).- If a vault is announced in the instructions,
vault_readits index - it holds the operator's conventions and project context.
Reading files and logs
delphi_readpages at 400 lines per call - read in RANGES.delphi_search/delphi_listto 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_fetchonce and use thedownloadfield it returns - aGET /files?path=...on the same host:port as/mcp, with the sameAuthorization: Bearerheader:curl -H "Authorization: Bearer $TOKEN" -o file "http://host:port/files?path=...". Verify withsha256sumagainst theX-File-SHA256header. This is the standard way for any size; files over 4 MB answer with the link only. Inline base64 chunks (maxbytes<=1048576, loopoffsetuntileof) are for clients without a shell.
Editing safely (delphi_edit)
- Anchor edits:
oldmust be copied EXACTLY from a freshdelphi_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/.dfmare 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: anAVISO DESIGNERwarning in the edit result is measured truth - fix it before building. FMX property spelling is not VCL:Size.Width(notSize.X),TextSettings.Font.Size(notFont.Size),TextSettings.HorzAlign = Center(nottaCenter).- Binary designer files (TPF0 stream or
$FFresource 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.
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.
- 10d ago First seen · 232 lines · 95 tokens per session scan A ced694a59f97
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.
Other skills, from other repositories
daofy
A usage guide for Daofy, a Delphi development tool that reads and edits Delphi source files and supports compiling, auditing, and automated testing. Delphi is a programming language and development environment.
horse-database-pooling
Guide for setting up thread-safe database connection pooling (FireDAC / UniDAC) in multithreaded Horse applications.
horse-mvc-architecture
Guide for structuring corporate Horse applications using Clean MVC (Model-View-Controller) principles and decoupling HTTP layers from business logic.
horse-request-response
Guide to interacting with THorseRequest (body, query, params, headers) and THorseResponse (Send, Status, ContentType).
horse-dependency-injection
Guide for managing request-scoped contextual services and IoC (dependency injection) in Delphi and Lazarus.
horse-integration-tests
Guide for writing automated integration tests for Horse endpoints using DUnit/DUnitX and THTTPClient.