File tree Expand file tree Collapse file tree 2 files changed +76
-0
lines changed
Expand file tree Collapse file tree 2 files changed +76
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ " annotations" : {
3+ " title" : " Get dependabot alert" ,
4+ " readOnlyHint" : true
5+ },
6+ " description" : " Get details of a specific dependabot alert in a GitHub repository." ,
7+ " inputSchema" : {
8+ " properties" : {
9+ " alertNumber" : {
10+ " description" : " The number of the alert." ,
11+ " type" : " number"
12+ },
13+ " owner" : {
14+ " description" : " The owner of the repository." ,
15+ " type" : " string"
16+ },
17+ " repo" : {
18+ " description" : " The name of the repository." ,
19+ " type" : " string"
20+ }
21+ },
22+ " required" : [
23+ " owner" ,
24+ " repo" ,
25+ " alertNumber"
26+ ],
27+ " type" : " object"
28+ },
29+ " name" : " get_dependabot_alert"
30+ }
Original file line number Diff line number Diff line change 1+ {
2+ " annotations" : {
3+ " title" : " List dependabot alerts" ,
4+ " readOnlyHint" : true
5+ },
6+ " description" : " List dependabot alerts in a GitHub repository." ,
7+ " inputSchema" : {
8+ " properties" : {
9+ " owner" : {
10+ " description" : " The owner of the repository." ,
11+ " type" : " string"
12+ },
13+ " repo" : {
14+ " description" : " The name of the repository." ,
15+ " type" : " string"
16+ },
17+ " severity" : {
18+ " description" : " Filter dependabot alerts by severity" ,
19+ " enum" : [
20+ " low" ,
21+ " medium" ,
22+ " high" ,
23+ " critical"
24+ ],
25+ " type" : " string"
26+ },
27+ " state" : {
28+ " default" : " open" ,
29+ " description" : " Filter dependabot alerts by state. Defaults to open" ,
30+ " enum" : [
31+ " open" ,
32+ " fixed" ,
33+ " dismissed" ,
34+ " auto_dismissed"
35+ ],
36+ " type" : " string"
37+ }
38+ },
39+ " required" : [
40+ " owner" ,
41+ " repo"
42+ ],
43+ " type" : " object"
44+ },
45+ " name" : " list_dependabot_alerts"
46+ }
You can’t perform that action at this time.
0 commit comments