-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy path.mcp.json
More file actions
42 lines (42 loc) · 1.07 KB
/
.mcp.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"mcpServers": {
"shadcn": {
"command": "npx",
"args": ["-y", "shadcn@latest", "mcp"]
},
"aspire": {
"command": "aspire",
"args": ["agent", "mcp"]
},
"azure-staging": {
"command": "npx",
"args": [
"-y", "@azure/mcp@latest", "server", "start",
"--read-only",
"--namespace", "monitor",
"--namespace", "applicationinsights",
"--namespace", "subscription",
"--namespace", "group"
],
"env": {
"AZURE_TENANT_ID": "${AZURE_TENANT_ID}",
"AZURE_SUBSCRIPTION_ID": "${AZURE_SUBSCRIPTION_ID_STAGING}"
}
},
"azure-production": {
"command": "npx",
"args": [
"-y", "@azure/mcp@latest", "server", "start",
"--read-only",
"--namespace", "monitor",
"--namespace", "applicationinsights",
"--namespace", "subscription",
"--namespace", "group"
],
"env": {
"AZURE_TENANT_ID": "${AZURE_TENANT_ID}",
"AZURE_SUBSCRIPTION_ID": "${AZURE_SUBSCRIPTION_ID_PRODUCTION}"
}
}
}
}