Snowflake MCP Server
for AI Agents
Connect your AI agent to StackOne's Snowflake MCP server and give it 80 MCP tools out of the box. Auth, tool execution, and security all managed.
Coverage
80 Agent Actions
Create, read, update, and delete across Snowflake — and extend your agent's capabilities with custom actions.
Authentication
Agent Tool Authentication
Per-user OAuth in one call. Your Snowflake MCP server gets session-scoped tokens with zero credentials stored on your infra.
Agent Auth →Security
Agent Protection
Every Snowflake tool response scanned for prompt injection in milliseconds — 88.7% accuracy, all running on CPU.
Prompt Injection Defense →Performance
Max Agent Context. Min Cost.
Free up to 96% of your agent's context window to enhance reasoning and reduce cost, on every Snowflake call.
Tools Discovery →What is the Snowflake MCP Server?
A Snowflake MCP server lets AI agents read and write Snowflake data through the Model Context Protocol — Anthropic's open standard for connecting LLMs to external tools. StackOne's Snowflake MCP server ships with 80 pre-built actions, fully extensible via the Connector Builder — plus managed authentication, prompt injection defense, observability, and agent execution runtime. Connect it from MCP clients like Claude Desktop, Claude Code, Cursor, Goose, and VS Code, or from agent frameworks like OpenAI Agents SDK, LangChain, and Vercel AI SDK.
All Snowflake MCP Tools
Every action from Snowflake's API, ready for your agent. Create, read, update, and delete — scoped to exactly what you need.
Databases
- Create Database
Create a new database in the Snowflake account
- Clone Database
Create a copy of an existing database with all its objects
- List Databases
Retrieve list of all databases in the account
- Update Database
Modify database properties like data retention or ownership
- Delete Database
Drop a database and all its contained objects
Schemas
- Create Schema
Create a new schema within a database
- List Schemas
Get all schemas in a specific database
- Update Schema
Modify schema properties like data retention or managed access
- Delete Schema
Drop a schema and all its contained objects
Tables
- Create Table
Create new permanent, transient, or temporary table
- Clone Table
Create a copy of an existing table with its data and structure
- List Tables
Retrieve all tables within a schema
- Update Table
Modify table properties like clustering keys or retention period
- Delete Table
Drop a table and its data
Views
- Create View
Create standard, secure, or materialized view
- List Views
Get all views in a schema
- Update View
Modify view definition or properties
- Delete View
Drop a view
Warehouses
- Create Warehouse
Provision a new virtual warehouse with specified size and properties
- List Warehouses
Get all warehouses in the account
- Update Warehouse
Modify warehouse size, auto-suspend, or other properties
- Delete Warehouse
Drop a virtual warehouse
Users
- Create User
Provision a new user account with authentication settings
- List Users
Retrieve all user accounts in the account
- Update User
Modify user properties like email, default role, or MFA settings
- Delete User
Remove a user account from the system
Roles
- Create Role
Define a new role for access control
- List Roles
Get all roles in the account
- Delete Role
Drop a custom role
Stages
- Create Stage
Create internal or external stage for data loading and unloading
- List Stages
Get all stages in a schema
- Update Stage
Modify stage properties like file format or credentials
- Delete Stage
Drop a stage object
Pipes
- Create Pipe
Set up Snowpipe for continuous data ingestion
- List Pipes
Get all pipes in a schema
- Update Pipe
Modify pipe properties or COPY statement
- Delete Pipe
Drop a Snowpipe object
Streams
- Create Stream
Create change data capture stream on table or view
- List Streams
Get all streams in a schema
- Delete Stream
Drop a stream object
Tasks
- Create Task
Define scheduled or DAG-based task for automation
- List Tasks
Get all tasks in a schema
- Update Task
Modify task schedule, definition, or warehouse
- Delete Task
Drop a task object
Functions
- List Functions
Get all user-defined functions in a schema
- Delete Function
Drop a user-defined function
Procedures
- Create Procedure
Define stored procedure in SQL, JavaScript, Python, Java, or Scala
- List Procedures
Get all stored procedures in a schema
- Delete Procedure
Drop a stored procedure
Other (31)
- Create Table As Select
Create a new table populated from a SQL SELECT query
- Get Statement Results
Retrieve results from executed SQL queries
- Get Database Details
Fetch metadata and properties of a specific database
- Get Schema Details
Retrieve metadata for a specific schema
- Get Table Details
Fetch table metadata including columns, constraints, and statistics
- Get View Details
Retrieve view definition and metadata
- Get Warehouse Details
Retrieve warehouse configuration and current status
- Get User Details
Fetch user profile information and settings
- Get Stage Details
Retrieve stage configuration and storage integration details
- Get Pipe Details
Retrieve pipe configuration and status
- Get Stream Details
Retrieve stream metadata and current offset
- Get Task Details
Retrieve task definition, schedule, and status
- Get Function Details
Retrieve function signature and implementation
- Get Procedure Details
Retrieve procedure definition and metadata
- Execute Query
Execute simple SELECT queries that complete within 45 seconds and return results immediately
- Execute SQL Statement
Execute SQL statements with custom formatting and optional async execution for operations exceeding 45 seconds
- Check Statement Status
Retrieve execution status, progress, and results for asynchronously submitted SQL statements
- Cancel Statement Execution
Terminate actively running SQL statements to reclaim compute resources and prevent unwanted operations
- Undrop Database
Restore a previously dropped database within the Time Travel retention period
- Alter Table
Create or replace a table with updated structure and properties
- Undrop Table
Restore a previously dropped table within the Time Travel retention period
- Start Warehouse
Resume a suspended warehouse to begin processing queries
- Suspend Warehouse
Pause a running warehouse to stop consuming credits
- Alter Warehouse
Create or replace a warehouse with updated configuration
- Grant Role To User
Assign a role to a user account
- Revoke Role From User
Remove role assignment from a user
- Grant Privileges To Role
Grant object privileges to a role for access control
- Resume Task
Enable a suspended task to run on schedule
- Suspend Task
Pause a running task to stop scheduled execution
- Execute Task
Manually trigger a task to run immediately
- Call Stored Procedure
Execute a stored procedure with parameters
Set Up Your Snowflake MCP Server in Minutes
One endpoint. Any framework. Your agent is talking to Snowflake in under 10 lines of code.
Agent Frameworks
{
"mcpServers": {
"stackone": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://api.stackone.com/mcp?x-account-id=<account_id>",
"--header",
"Authorization: Basic <YOUR_BASE64_TOKEN>"
]
}
}
}Snowflake Resources
How I Vibe-Coded a Customer Success Hub Using StackOne's AI Native Integration Platform
How a non-developer vibe-coded a customer success dashboard pulling HubSpot, Pylon, PostHog, Databricks, and Fireflies through StackOne's MCP gateway.
7 min read
MCP Code Mode: Keeping Tool Responses Out of Agent Context
Anthropic's code_execution processes data already in context. Custom MCP code mode keeps raw tool responses in a sandbox. 14K tokens vs 500.
11 min
Comparing BM25, TF-IDF, and Hybrid Search for MCP Tool Discovery
Benchmarking BM25, TF-IDF, and hybrid search for MCP tool discovery across 916 tools. The 80/20 TF-IDF/BM25 hybrid hits 21% Top-1 accuracy in under 1ms.
10 min
Indirect Prompt Injection Defense for MCP Tools: A Technical Guide
MCP tools that read emails, CRM records, and tickets are indirect prompt injection vectors. Here's how we built a two-tier defense that scans tool results in ~11ms.
12 min
MCP vs A2A: Architecture, Security, and When to Use Each
MCP vs A2A: what each protocol standardizes, how they differ, their shared security risks including indirect prompt injection, and when to use one, both, or a hybrid architecture.
12 min
MCP vs API: What 200+ Connector Builds Taught Us
MCP wraps APIs, it doesn't replace them. After building 200+ connectors that serve both, here's when each approach wins.
14 min read
Snowflake MCP Server FAQ
Does StackOne have a Snowflake MCP server?
Snowflake MCP server vs direct API integration — what's the difference?
How does Snowflake authentication work for AI agents?
origin_owner_id.Are Snowflake MCP tools vulnerable to prompt injection?
What is the context bloat of a Snowflake agent and how do I avoid it?
Can I limit which actions my Snowflake agent can access?
Can I create custom agent actions for my Snowflake MCP server?
When should I NOT use a Snowflake MCP server?
What AI frameworks and AI clients does the StackOne Snowflake MCP server support?
Put your AI agents to work
All the tools you need to build and scale AI agent integrations, with best-in-class connectivity, execution, and security.