forked from NicoPilot-dev/matplotlib-azurefunction
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhost.json
More file actions
25 lines (25 loc) · 691 Bytes
/
Copy pathhost.json
File metadata and controls
25 lines (25 loc) · 691 Bytes
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
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
}
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[4.0.0, 5.0.0)"
},
"extensions": {
"mcp": {
"serverName": "MatplotlibChartGenerator",
"serverVersion": "1.0.0",
"instructions": "Generates matplotlib chart images. Call generate_chart with chart_type, data (JSON string), and optional params (JSON string for styling). Returns a public URL to the PNG image.",
"system": {
"webhookAuthorizationLevel": "Anonymous"
}
}
}
}