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 exasol/mcp-server --skill exasol-udfsgit clone --depth 1 https://github.com/exasol/mcp-serverWrote 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/exasol/mcp-server/exasol-udfs)<a href="https://agentmods.dev/skills/exasol/mcp-server/exasol-udfs"><img src="https://agentmods.dev/badge/skills/exasol/mcp-server/exasol-udfs/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/exasol/mcp-server/exasol-udfs"><img src="https://agentmods.dev/badge/skills/exasol/mcp-server/exasol-udfs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00048 | $0.03031 |
| Opus 5 | $0.00024 | $0.01515 |
| Sonnet 5 | $0.00010 | $0.00606 |
| Haiku 4.5 | $0.00005 | $0.00303 |
Grade A, and why
exasol-udfs 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 9d 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 — 312 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Exasol UDFs and Scripts
Overview
Exasol lets you define custom functions and scripts in Python, Java, Lua, or R. These run inside the Exasol cluster nodes. Use them when:
- A computation is too complex to express in SQL.
- You need to call an external library, model or service.
- You want to process data in bulk without transferring it to the client.
The CREATE SCRIPT statement creates a UDF (also called "script").
Script Types
| Type | Input | Output | Typical use |
|---|---|---|---|
SCALAR |
One row per call | One row (or multiple with EMITS) |
Transform a single value |
SET |
All rows of a group | One row (or multiple with EMITS) |
Aggregate or reshape a group |
SET with EMITS can return a different number of rows than it receives (e.g., a custom window function).
A SET script with RETURNS (not EMITS) acts as a custom aggregate — it receives all rows of a group and returns a single value.
A SCALAR with EMITS can be used for splitting one row into many.
CREATE SCRIPT Syntax
CREATE OR REPLACE PYTHON3 SCALAR SCRIPT my_schema.my_script(
input_col VARCHAR(100),
factor DOUBLE
)
RETURNS DOUBLE AS
import math
def run(ctx):
return math.sqrt(ctx.input_col) * ctx.factor
/
The script body ends with a bare / on its own line.
Language Tokens
| Token | Language |
|---|---|
PYTHON3 |
Python 3 (recommended) |
PYTHON3_SME |
Python 3 with Script Management Extensions |
JAVA |
Java |
LUA |
Lua |
R |
R |
Return Declaration
RETURNS type— scalar output (one value per call for SCALAR scripts).EMITS (col1 type1, col2 type2, ...)— tabular output (SET and SCALAR scripts that emit multiple rows).
Python SCALAR Script
CREATE OR REPLACE PYTHON3 SCALAR SCRIPT my_schema.upper_words(text VARCHAR(2000))
RETURNS VARCHAR(2000) AS
def run(ctx):
return ctx.text.upper() if ctx.text else None
/
Call it like a regular SQL function:
SELECT my_schema.upper_words(description) FROM products;
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.
- 9d ago First seen · 312 lines · 48 tokens per session scan A 61b57986e568
exasol-udfs is a skill published in the GitHub repository exasol/mcp-server (18 stars, last pushed today), licensed MIT. It adds 48 tokens to every session and 3,031 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
idapython
IDA Pro Python scripting for reverse engineering. Use when writing IDAPython scripts, analyzing binaries, working with IDA's API for disassembly, decompilation (Hex-Rays), type systems, cross-references, functions, segments, or any IDA database manipulation. Covers ida modules (50+), idautils iterators, and common…
vibeue
Unreal Engine 5 development using the VibeUE Python API. Use when working in Unreal Engine — blueprints, state trees, materials, actors, landscapes, animation, niagara, widgets, sound, foliage, gameplay tags, enhanced input, skeletons, PCG (procedural content generation), and more. VibeUE is an extension of Unreal's…
n8n-code-python
Write Python code in n8n Code nodes. Use when writing Python in n8n, using input/json/node syntax, working with standard library, or need to understand Python limitations in n8n Code nodes. Use this skill when the user specifically requests Python for an n8n Code node. Note — JavaScript is recommended for 95% of use…
adding-personhog-rpc
Guide for adding a new RPC to personhog-replica and personhog-router. Covers eligibility checks, proto definition, code generation for Python and Node.js clients, Rust implementation (storage trait, postgres queries, service handler, router wiring), and index compatibility validation. Use when adding a new gRPC…
azure-cosmos-db-py
Build Azure Cosmos DB NoSQL services with Python/FastAPI following production-grade patterns. Use when implementing database client setup with dual auth (DefaultAzureCredential + emulator), service...
azure-cosmos-py
Client library for Azure Cosmos DB NoSQL API — globally distributed, multi-model database.