exasol-virtual-schemas

exasol-virtual-schemas is a skill for Claude Code, Codex from exasol/mcp-server. It costs 38 tokens per session (1,382 once invoked), scanned A, original, MIT.

Instructions for creating read-only Exasol schemas that show data from other databases, files, or cloud services without first copying it into Exasol. Exasol is a database system, and query pushdown lets the source handle supported parts of a query.

In plain words
What is it for?
Use it to configure JDBC drivers, adapter scripts, external table metadata, and query pushdown for federated data access.
Why use it?
It provides one place to query external data while limiting access to reading and reducing unnecessary data processing in Exasol.

Skill for Claude CodeCodex

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

Good fit Use it to configure JDBC drivers, adapter scripts, external table metadata, and query pushdown for federated data access.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/exasol/mcp-server/exasol-virtual-schemas
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-virtual-schemas
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-virtual-schemas

README.md
[![agentmods](https://agentmods.dev/badge/skills/exasol/mcp-server/exasol-virtual-schemas/github.svg)](https://agentmods.dev/skills/exasol/mcp-server/exasol-virtual-schemas)
Your own site
<a href="https://agentmods.dev/skills/exasol/mcp-server/exasol-virtual-schemas"><img src="https://agentmods.dev/badge/skills/exasol/mcp-server/exasol-virtual-schemas/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-virtual-schemas

Your own site · 80×15
<a href="https://agentmods.dev/skills/exasol/mcp-server/exasol-virtual-schemas"><img src="https://agentmods.dev/badge/skills/exasol/mcp-server/exasol-virtual-schemas.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,382 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.00038 $0.01382
Opus 5 $0.00019 $0.00691
Sonnet 5 $0.00008 $0.00276
Haiku 4.5 $0.00004 $0.00138

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

Security

Grade A, and why

exasol-virtual-schemas 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 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.

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-virtual-schemas/SKILL.md · 184 lines

How it starts

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

Exasol Virtual Schemas

Virtual schemas expose external data sources (other databases, files, cloud services) as read-only Exasol schemas. Queries against virtual tables are pushed down to the source where possible; the rest is processed in Exasol.

How It Works

  1. Exasol identifies virtual tables in a query and locates the adapter script.
  2. It asks the adapter which operations it supports (pushdown capabilities).
  3. A pushdown request is sent; the adapter returns an IMPORT statement or a SELECT with a UDF.
  4. The result is merged into the rest of the query execution.

Metadata (table names, column types) is retrieved via JDBC and cached in Exasol until explicitly refreshed.

Setup

Step 1 — Upload the JDBC Driver to BucketFS

# Default driver path inside BucketFS
/buckets/bfsdefault/default/drivers/jdbc/<database>/<driver>.jar

Upload the JAR using the download_file BucketFS tool (downloads from a URL to BucketFS) or the BucketFS web interface. The download_file tool requires the JAR to be hosted at an accessible URL (e.g., a GitHub release or S3).

Step 2 — Install the Adapter Script

CREATE SCHEMA adapter_schema;

CREATE OR REPLACE JAVA ADAPTER SCRIPT adapter_schema.jdbc_adapter AS
  %scriptclass com.exasol.adapter.RequestDispatcher;
  %jar /buckets/bfsdefault/default/virtual-schema-dist-12.0.0.jar;
  %jar /buckets/bfsdefault/default/postgresql-42.7.1.jar;
/

Replace the JAR names and paths with the actual versions in your BucketFS.

Step 3 — Create a Connection Object

CREATE OR REPLACE CONNECTION pg_conn
TO 'jdbc:postgresql://host:5432/mydb'
USER 'user' IDENTIFIED BY 'password';

Step 4 — Create the Virtual Schema

CREATE VIRTUAL SCHEMA pg_schema
USING adapter_schema.jdbc_adapter
WITH CONNECTION_NAME = 'PG_CONN'
     SCHEMA_NAME     = 'public';

SCHEMA_NAME is the remote schema to expose. Adapter-specific properties (e.g. CATALOG_NAME, TABLE_FILTER) go in the same WITH clause.

Read the full file on GitHub · 184 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 · 184 lines · 38 tokens per session scan A 542e196be772

Subscribe to this mod's changes

exasol-virtual-schemas is a skill published in the GitHub repository exasol/mcp-server (18 stars, last pushed yesterday), licensed MIT. It adds 38 tokens to every session and 1,382 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

pg-bloat-analysis

Detects and remediates table and index bloat in PostgreSQL using pgstattuple analysis. Identifies fragmentation, dead tuples, and wasted space with prioritized maintenance actions including VACUUM, REINDEX, and pgrepack recommendations.

isdaniel/pgtuner_mcp · 53 tokens

pg-index-optimization

Performs comprehensive PostgreSQL index optimization including unused index cleanup, duplicate detection, missing index recommendations, and hypothetical index testing with HypoPG. Provides actionable CREATE/DROP INDEX statements with estimated impact.

isdaniel/pgtuner_mcp · 44 tokens

pg-performance-baseline

Generates a comprehensive PostgreSQL performance baseline report capturing health metrics, query workload patterns, table statistics, configuration settings, index utilization, and I/O patterns. Designed for before/after comparison when making changes.

isdaniel/pgtuner_mcp · 46 tokens

pg-query-rewrite

Guides SQL query optimization through execution plan analysis and common rewrite patterns. Covers subquery-to-JOIN conversion, CTE materialization control, OR-to-UNION, NOT IN-to-NOT EXISTS, pagination optimization, and SELECT elimination. Uses analyzequery with format and settings parameters for deep plan analysis.

isdaniel/pgtuner_mcp · 67 tokens

pg-slow-query-diagnosis

Diagnoses slow PostgreSQL queries by analyzing pgstatstatements, execution plans, index opportunities, and table statistics. Guides the agent through a systematic investigation workflow using pgtuner-mcp tools to produce actionable optimization recommendations.

isdaniel/pgtuner_mcp · 52 tokens

pg-vacuum-tuning

Monitors and tunes PostgreSQL vacuum operations including autovacuum configuration, vacuum progress tracking, wraparound prevention, and per-table vacuum strategy. Provides tuning recommendations for high-churn OLTP and large analytical tables.

isdaniel/pgtuner_mcp · 49 tokens