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 agentmods add skills/serac-labs/serac/mid-servernpx skills add serac-labs/serac --skill mid-servergit clone --depth 1 https://github.com/serac-labs/seracWrote 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/serac-labs/serac/mid-server)<a href="https://agentmods.dev/skills/serac-labs/serac/mid-server"><img src="https://agentmods.dev/badge/skills/serac-labs/serac/mid-server.svg" alt="Measured on agentmods" 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 | $0.00046 | $0.03126 |
| Opus 5 | $0.00023 | $0.01563 |
| Sonnet 5 | $0.00009 | $0.00625 |
| Haiku 4.5 | $0.00005 | $0.00313 |
Grade A, and why
mid-server scanned grade A with 0 findings 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 4d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 445 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MID Server for ServiceNow
MID Server enables ServiceNow to communicate with resources inside your network.
MID Server Architecture
ServiceNow Instance
↓ ECC Queue
MID Server
├── Probes (Outbound)
│ └── Commands sent TO MID
├── Sensors (Inbound)
│ └── Results sent FROM MID
└── Script Execution
Key Tables
| Table | Purpose |
|---|---|
ecc_agent |
MID Server records |
ecc_queue |
Input/Output queue |
discovery_probes |
Probe definitions |
discovery_sensors |
Sensor definitions |
sys_script_execution |
Script execution requests |
ECC Queue Communication (ES5)
Send Command to MID Server
// Send command via ECC queue (ES5 ONLY!)
function sendMIDCommand(midServerName, command, parameters) {
var mid = getMIDServer(midServerName)
if (!mid) {
gs.error("MID Server not found: " + midServerName)
return null
}
var ecc = new GlideRecord("ecc_queue")
ecc.initialize()
// ECC Queue settings
ecc.setValue("agent", mid.getUniqueValue())
ecc.setValue("topic", "Command")
ecc.setValue("name", command)
ecc.setValue("source", "CustomScript")
// Parameters as payload
ecc.setValue("payload", buildPayload(parameters))
// Direction: output = to MID, input = from MID
ecc.setValue("queue", "output")
// State
ecc.setValue("state", "ready")
return ecc.insert()
}
function getMIDServer(name) {
var mid = new GlideRecord("ecc_agent")
mid.addQuery("name", name)
mid.addQuery("status", "Up")
mid.query()
if (mid.next()) {
return mid
}
return null
}
function buildPayload(params) {
var xml = '<?xml version="1.0" encoding="UTF-8"?>'
xml += "<parameters>"
for (var key in params) {
if (params.hasOwnProperty(key)) {
xml += '<parameter name="' + key + '">'
xml += "<value>" + escapeXML(params[key]) + "</value>"
xml += "</parameter>"
}
}
xml += "</parameters>"
return xml
}
function escapeXML(str) {
return str
.replace(/&/g, "&")
.replace(/</g, "<")
.replace(/>/g, ">")
.replace(/"/g, """)
.replace(/'/g, "'")
}
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.
- 4d ago First seen · 445 lines · 46 tokens per session scan A 6eb7bb033789
mid-server is a skill published in the GitHub repository serac-labs/serac (78 stars, last pushed 9d ago), licensed Apache-2.0. It adds 46 tokens to every session and 3,126 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
contract-review-workflow
Trigger a deployed Mistral Workflow for contract review, poll execution status, detect human-in-the-loop checkpoints via workflowinteract(query), collect approval or changes, and resume the workflow via workflowinteract(signal). Use when the user wants to run a contract through a Mistral Workflow with oversight…
french-commit-message
Génère un message de commit git en français au format Conventional Commits à partir des changements stagés. Récupère automatiquement le diff via git diff --staged. À utiliser quand l'utilisateur demande un commit message, message de commit, ou résumé de diff en français.
cpersona-memory
Give Claude persistent, searchable memory across sessions using the CPersona MCP server. Use this skill whenever the user wants Claude to remember things between conversations, asks to install or set up CPersona / a memory server, or when CPersona tools are available and the conversation contains decisions, rules…
french-invoice-reminder
Rédige une relance de facture B2B en français avec un ton contrôlé (poli, ferme, ou final). À utiliser quand l'utilisateur demande une relance facture, un rappel de paiement, un mail de recouvrement, ou une dunning letter en français.
redazione-contratto
Supporto alla redazione contrattuale con verifica normativa, clausole tipo e compliance GDPR. Usa quando l'utente chiede di redigere, revisionare, analizzare un contratto, verificare clausole o predisporre un accordo.
quantificazione-danni
Quantifica danni biologici, patrimoniali o morali con personalizzazione e attualizzazione monetaria. Usa quando l'utente chiede di calcolare un risarcimento, quantificare danni da invalidita, danno emergente, lucro cessante o danno morale/esistenziale.