exasol-udfs

exasol-udfs is a skill for Claude Code, Codex from exasol/mcp-server. It costs 48 tokens per session (3,031 once invoked), scanned A, original, MIT.

A guide to Exasol user-defined functions and scripts. Exasol is a database that can run custom Python, Java, Lua, or R code inside its cluster to process data.

In plain words
What is it for?
Use it to create scalar functions, grouped operations, custom aggregates, row-splitting logic, and scripts that return altered numbers of rows.
Why use it?
It explains how to perform calculations that SQL alone cannot express, use external libraries or services, and process large datasets without moving them to a client.

Skill for Claude CodeCodex

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

Good fit Use it to create scalar functions, grouped operations, custom aggregates, row-splitting logic, and scripts that return altered numbers of rows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/exasol/mcp-server/exasol-udfs
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 exasol/mcp-server --skill exasol-udfs
Clone the repo
git clone --depth 1 https://github.com/exasol/mcp-server

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 exasol-udfs

README.md
[![agentmods](https://agentmods.dev/badge/skills/exasol/mcp-server/exasol-udfs/github.svg)](https://agentmods.dev/skills/exasol/mcp-server/exasol-udfs)
Your own site
<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.

agentmods 80×15 button for exasol-udfs

Your own site · 80×15
<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>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,031 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00048 $0.03031
Opus 5 $0.00024 $0.01515
Sonnet 5 $0.00010 $0.00606
Haiku 4.5 $0.00005 $0.00303

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

Security

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.

exasol/ai/mcp/server/skills/exasol-udfs/SKILL.md · 312 lines

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;

Read the full file on GitHub · 312 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. 9d ago First seen · 312 lines · 48 tokens per session scan A 61b57986e568

Subscribe to this mod's changes

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.

Related

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…

mrexodia/ida-pro-mcp · 77 tokens

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…

kevinpbuckley/VibeUE · 82 tokens

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…

czlonkowski/n8n-mcp · 157 tokens

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…

PostHog/posthog · 88 tokens

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...

benjaminasterA/antigravity-awesome-skills · 42 tokens

azure-cosmos-py

Client library for Azure Cosmos DB NoSQL API — globally distributed, multi-model database.

benjaminasterA/antigravity-awesome-skills · 0 tokens