mcp-snowflake-server: Skill for Claude Code

.agents/skills/snowflake-integration-testing/SKILL.md

snowflake-integration-testing is a skill for Claude Code, Codex from nsphung/mcp-snowflake-server. It costs 79 tokens per session (868 once invoked), scanned A, original, MIT.

An integration-testing workflow for the Snowflake MCP server. Integration testing checks whether connected parts work together, including database access and the server's available tools.

In plain words
What is it for?
Checking connectivity, listing databases, schemas, and tables, describing table columns, running read-only SQL, and finding or sampling columns containing nested data types such as VARIANT, OBJECT, and ARRAY.
Why use it?
It helps verify that the Snowflake connection, permissions, server deployment, and data access behave as expected before relying on them.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is nsphung/mcp-snowflake-server's own configuration. It tells Claude Code and Codex how to work on mcp-snowflake-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mcp-snowflake-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to nsphung/mcp-snowflake-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/nsphung/mcp-snowflake-server/main/.agents/skills/snowflake-integration-testing/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/nsphung/mcp-snowflake-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 snowflake-integration-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/nsphung/mcp-snowflake-server/snowflake-integration-testing.svg)](https://agentmods.dev/skills/nsphung/mcp-snowflake-server/snowflake-integration-testing)
Your own site
<a href="https://agentmods.dev/skills/nsphung/mcp-snowflake-server/snowflake-integration-testing"><img src="https://agentmods.dev/badge/skills/nsphung/mcp-snowflake-server/snowflake-integration-testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 868 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.
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.00079 $0.00868
Opus 5 $0.00039 $0.00434
Sonnet 5 $0.00016 $0.00174
Haiku 4.5 $0.00008 $0.00087

Measured 7d ago against content hash 991a9b75172f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

snowflake-integration-testing 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 7d 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.

.agents/skills/snowflake-integration-testing/SKILL.md · 110 lines

How it starts

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

Snowflake Integration Testing

When to Use

  • Verifying MCP Snowflake server connectivity after configuration changes
  • Testing that MCP tools (list_databases, list_schemas, list_tables, describe_table, read_query) work correctly
  • Exploring Snowflake schemas to validate data access permissions
  • Discovering tables with specific column data types (VARIANT, OBJECT, ARRAY)
  • Sampling rows to verify data shape, nested JSON structure, and content
  • Validating Docker or local MCP server deployments

Available MCP Tools

Tool Purpose
list_databases List all accessible databases
list_schemas List schemas in a database
list_tables List tables in a database.schema
describe_table Get column metadata for a fully-qualified table
read_query Execute a read-only SQL query

Procedure

1. Connectivity Check

Verify the connection is active and inspect the session context:

SELECT CURRENT_USER(), CURRENT_ROLE(), CURRENT_WAREHOUSE(), CURRENT_DATABASE(), CURRENT_SCHEMA()

Use read_query to execute this. Confirm user, role, warehouse, database, and schema are as expected.

2. Schema Exploration

Follow this sequence to explore the data landscape:

  1. Call list_databases — note accessible databases
  2. Pick a target database, call list_schemas with database parameter
  3. Pick a target schema, call list_tables with database and schema parameters
  4. For specific tables, call describe_table with fully-qualified name (database.schema.table)

3. Data Type Discovery

Find tables with specific column types using read_query:

-- Find OBJECT columns (nested JSON)
SELECT table_schema, table_name, column_name, data_type
FROM <DATABASE>.information_schema.columns
WHERE data_type = 'OBJECT'
LIMIT 20

-- Find VARIANT columns
SELECT table_schema, table_name, column_name, data_type
FROM <DATABASE>.information_schema.columns
WHERE data_type = 'VARIANT'
LIMIT 20

-- Find ARRAY columns
SELECT table_schema, table_name, column_name, data_type
FROM <DATABASE>.information_schema.columns
WHERE data_type = 'ARRAY'
LIMIT 20

Read the full file on GitHub · 110 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 110 lines · 79 tokens per session scan A 991a9b75172f

Subscribe to this mod's changes

snowflake-integration-testing is a skill published in the GitHub repository nsphung/mcp-snowflake-server (2 stars, last pushed 2d ago), licensed MIT. It adds 79 tokens to every session and 868 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

coverage-tracker

Run a Google Alerts-style keyword coverage tracker. Uses news-search for recent keyword queries, lets the LLM dedupe and classify real features versus junk, stores decisions in SQLite, and alerts only on new real coverage.

elvisun/newsjack · 47 tokens

screen-reader-testing

Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues, or ensuring assistive technology support.

wshobson/agents · 39 tokens

web3-testing

Test smart contracts comprehensively using Hardhat and Foundry with unit tests, integration tests, and mainnet forking. Use when testing Solidity contracts, setting up blockchain test suites, or validating DeFi protocols.

wshobson/agents · 46 tokens

postgresql-table-design

Use this skill when designing or reviewing a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features.

wshobson/agents · 37 tokens

foundry-hosted-agent-validation

Step-by-step process for validating a Python Foundry hosted agent sample (under python/samples/04-hosting/foundry-hosted-agents/) end to end — running it locally (native runtime and azd ai agent run) and after deploying it to an Azure AI Foundry project with azd. Use this when asked to validate a hosted agent sample.

microsoft/agent-framework · 82 tokens

temporal-python-testing

Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.

wshobson/agents · 45 tokens