-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp.json
More file actions
95 lines (95 loc) · 3.06 KB
/
mcp.json
File metadata and controls
95 lines (95 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"inputs": [
{
"id": "snowflake_account",
"type": "promptString",
"description": "Snowflake account identifier",
"default": ""
},
{
"id": "snowflake_user",
"type": "promptString",
"description": "Snowflake username",
"default": ""
},
{
"id": "snowflake_password",
"type": "promptString",
"description": "Snowflake password",
"password": true
},
{
"id": "snowflake_warehouse",
"type": "promptString",
"description": "Snowflake Warehouse name",
"default": "COMPUTE_WH"
},
{
"id": "semantic_model_file",
"type": "promptString",
"description": "The fully qualified Snowflake stage path to the semantic model file",
"default": ""
},
{
"id": "cortex_search_service",
"type": "promptString",
"description": "The fully qualified name of Cortex Search Service",
"default": ""
},
{
"id": "cortex_agent_llm_model",
"type": "pickString",
"description": "The LLM model to use for Cortex Agent",
"default": "claude-4-sonnet",
"options": [
"claude-4-sonnet",
"claude-3-7-sonnet",
"claude-3-5-sonnet",
"deepseek-r1",
"llama3.1-405b",
"llama3.1-70b",
"llama3.1-8b",
"llama3.2-1b",
"llama3.2-3b",
"llama4-maverick",
"mistral-7b",
"mistral-large2",
"snowflake-llama-3.3-70b"
]
}
],
"servers": {
"snowflake-cortex-agent": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SNOWFLAKE_ACCOUNT_URL",
"-e",
"SNOWFLAKE_USER",
"-e",
"SNOWFLAKE_PASSWORD",
"-e",
"SEMANTIC_MODEL_FILE",
"-e",
"CORTEX_SEARCH_SERVICE",
"-e",
"SNOWFLAKE_WAREHOUSE",
"-e",
"CORTEX_AGENT_LLM_MODEL",
"ghcr.io/kameshsampath/snowflake-cortex-agent-mcp-server:latest",
],
"env": {
"SNOWFLAKE_ACCOUNT_URL": "https://${input:snowflake_account}.snowflakecomputing.com",
"SNOWFLAKE_USER": "${input:snowflake_user}",
"SNOWFLAKE_PASSWORD": "${input:snowflake_password}",
"SEMANTIC_MODEL_FILE": "${input:semantic_model_file}",
"CORTEX_SEARCH_SERVICE": "${input:cortex_search_service}",
"SNOWFLAKE_WAREHOUSE": "${input:snowflake_warehouse}",
"CORTEX_AGENT_LLM_MODEL": "${input:cortex_agent_llm_model}"
}
}
}
}