Skip to content

Commit 72c569a

Browse files
authored
Merge pull request #56 from actions/sgoedecke/mcp
Add read-only GitHub MCP support
2 parents 25a2129 + 22b4dbc commit 72c569a

File tree

112 files changed

+21143
-849
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+21143
-849
lines changed

.licensed.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,22 @@ ignored:
1616
npm:
1717
# Used by Rollup.js when building in GitHub Actions
1818
- '@rollup/rollup-linux-x64-gnu'
19+
- '@rollup/rollup-android-arm-eabi'
20+
- '@rollup/rollup-android-arm64'
21+
- '@rollup/rollup-darwin-arm64'
22+
- '@rollup/rollup-darwin-x64'
23+
- '@rollup/rollup-freebsd-arm64'
24+
- '@rollup/rollup-freebsd-x64'
25+
- '@rollup/rollup-linux-arm-gnueabihf'
26+
- '@rollup/rollup-linux-arm-musleabihf'
27+
- '@rollup/rollup-linux-arm64-gnu'
28+
- '@rollup/rollup-linux-arm64-musl'
29+
- '@rollup/rollup-linux-loongarch64-gnu'
30+
- '@rollup/rollup-linux-powerpc64le-gnu'
31+
- '@rollup/rollup-linux-riscv64-gnu'
32+
- '@rollup/rollup-linux-riscv64-musl'
33+
- '@rollup/rollup-linux-s390x-gnu'
34+
- '@rollup/rollup-win32-arm64-msvc'
35+
- '@rollup/rollup-win32-ia32-msvc'
36+
- '@rollup/rollup-win32-x64-msvc'
37+
- 'fsevents'
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: "@modelcontextprotocol/sdk"
3+
version: 1.15.1
4+
type: npm
5+
summary: Model Context Protocol implementation for TypeScript
6+
homepage: https://modelcontextprotocol.io
7+
license: mit
8+
licenses:
9+
- sources: LICENSE
10+
text: |
11+
MIT License
12+
13+
Copyright (c) 2024 Anthropic, PBC
14+
15+
Permission is hereby granted, free of charge, to any person obtaining a copy
16+
of this software and associated documentation files (the "Software"), to deal
17+
in the Software without restriction, including without limitation the rights
18+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19+
copies of the Software, and to permit persons to whom the Software is
20+
furnished to do so, subject to the following conditions:
21+
22+
The above copyright notice and this permission notice shall be included in all
23+
copies or substantial portions of the Software.
24+
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31+
SOFTWARE.
32+
- sources: README.md
33+
text: This project is licensed under the MIT License—see the [LICENSE](LICENSE)
34+
file for details.
35+
notices: []
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: "@rollup/plugin-json"
3+
version: 6.1.0
4+
type: npm
5+
summary: Convert .json files to ES6 modules
6+
homepage: https://github.com/rollup/plugins/tree/master/packages/json#readme
7+
license: mit
8+
licenses:
9+
- sources: LICENSE
10+
text: |
11+
The MIT License (MIT)
12+
13+
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
14+
15+
Permission is hereby granted, free of charge, to any person obtaining a copy
16+
of this software and associated documentation files (the "Software"), to deal
17+
in the Software without restriction, including without limitation the rights
18+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19+
copies of the Software, and to permit persons to whom the Software is
20+
furnished to do so, subject to the following conditions:
21+
22+
The above copyright notice and this permission notice shall be included in
23+
all copies or substantial portions of the Software.
24+
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31+
THE SOFTWARE.
32+
notices: []
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: "@rollup/pluginutils"
3+
version: 5.1.4
4+
type: npm
5+
summary: A set of utility functions commonly used by Rollup plugins
6+
homepage: https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme
7+
license: mit
8+
licenses:
9+
- sources: LICENSE
10+
text: |
11+
The MIT License (MIT)
12+
13+
Copyright (c) 2019 RollupJS Plugin Contributors (https://github.com/rollup/plugins/graphs/contributors)
14+
15+
Permission is hereby granted, free of charge, to any person obtaining a copy
16+
of this software and associated documentation files (the "Software"), to deal
17+
in the Software without restriction, including without limitation the rights
18+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19+
copies of the Software, and to permit persons to whom the Software is
20+
furnished to do so, subject to the following conditions:
21+
22+
The above copyright notice and this permission notice shall be included in
23+
all copies or substantial portions of the Software.
24+
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31+
THE SOFTWARE.
32+
notices: []
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: "@rollup/rollup-linux-x64-musl"
3+
version: 4.43.0
4+
type: npm
5+
summary: Native bindings for Rollup
6+
homepage: https://rollupjs.org/
7+
license: mit
8+
licenses:
9+
- sources: Auto-generated MIT license text
10+
text: |
11+
MIT License
12+
13+
Permission is hereby granted, free of charge, to any person obtaining a copy
14+
of this software and associated documentation files (the "Software"), to deal
15+
in the Software without restriction, including without limitation the rights
16+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17+
copies of the Software, and to permit persons to whom the Software is
18+
furnished to do so, subject to the following conditions:
19+
20+
The above copyright notice and this permission notice shall be included in all
21+
copies or substantial portions of the Software.
22+
23+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29+
SOFTWARE.
30+
notices: []
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: "@types/estree"
3+
version: 1.0.7
4+
type: npm
5+
summary: TypeScript definitions for estree
6+
homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree
7+
license: mit
8+
licenses:
9+
- sources: LICENSE
10+
text: |2
11+
MIT License
12+
13+
Copyright (c) Microsoft Corporation.
14+
15+
Permission is hereby granted, free of charge, to any person obtaining a copy
16+
of this software and associated documentation files (the "Software"), to deal
17+
in the Software without restriction, including without limitation the rights
18+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19+
copies of the Software, and to permit persons to whom the Software is
20+
furnished to do so, subject to the following conditions:
21+
22+
The above copyright notice and this permission notice shall be included in all
23+
copies or substantial portions of the Software.
24+
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31+
SOFTWARE
32+
notices: []

.licenses/npm/accepts.dep.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
name: accepts
3+
version: 2.0.0
4+
type: npm
5+
summary: Higher-level content negotiation
6+
homepage:
7+
license: mit
8+
licenses:
9+
- sources: LICENSE
10+
text: |
11+
(The MIT License)
12+
13+
Copyright (c) 2014 Jonathan Ong <[email protected]>
14+
Copyright (c) 2015 Douglas Christopher Wilson <[email protected]>
15+
16+
Permission is hereby granted, free of charge, to any person obtaining
17+
a copy of this software and associated documentation files (the
18+
'Software'), to deal in the Software without restriction, including
19+
without limitation the rights to use, copy, modify, merge, publish,
20+
distribute, sublicense, and/or sell copies of the Software, and to
21+
permit persons to whom the Software is furnished to do so, subject to
22+
the following conditions:
23+
24+
The above copyright notice and this permission notice shall be
25+
included in all copies or substantial portions of the Software.
26+
27+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
28+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
30+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
31+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
32+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
33+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34+
- sources: README.md
35+
text: |-
36+
[MIT](LICENSE)
37+
38+
[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/accepts/master
39+
[coveralls-url]: https://coveralls.io/r/jshttp/accepts?branch=master
40+
[github-actions-ci-image]: https://badgen.net/github/checks/jshttp/accepts/master?label=ci
41+
[github-actions-ci-url]: https://github.com/jshttp/accepts/actions/workflows/ci.yml
42+
[node-version-image]: https://badgen.net/npm/node/accepts
43+
[node-version-url]: https://nodejs.org/en/download
44+
[npm-downloads-image]: https://badgen.net/npm/dm/accepts
45+
[npm-url]: https://npmjs.org/package/accepts
46+
[npm-version-image]: https://badgen.net/npm/v/accepts
47+
notices: []

.licenses/npm/ajv.dep.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: ajv
3+
version: 6.12.6
4+
type: npm
5+
summary: Another JSON Schema Validator
6+
homepage: https://github.com/ajv-validator/ajv
7+
license: mit
8+
licenses:
9+
- sources: LICENSE
10+
text: |+
11+
The MIT License (MIT)
12+
13+
Copyright (c) 2015-2017 Evgeny Poberezkin
14+
15+
Permission is hereby granted, free of charge, to any person obtaining a copy
16+
of this software and associated documentation files (the "Software"), to deal
17+
in the Software without restriction, including without limitation the rights
18+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19+
copies of the Software, and to permit persons to whom the Software is
20+
furnished to do so, subject to the following conditions:
21+
22+
The above copyright notice and this permission notice shall be included in all
23+
copies or substantial portions of the Software.
24+
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31+
SOFTWARE.
32+
33+
- sources: README.md
34+
text: "[MIT](https://github.com/ajv-validator/ajv/blob/master/LICENSE)"
35+
notices: []
36+
...

.licenses/npm/body-parser.dep.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
name: body-parser
3+
version: 2.2.0
4+
type: npm
5+
summary: Node.js body parsing middleware
6+
homepage:
7+
license: mit
8+
licenses:
9+
- sources: LICENSE
10+
text: |
11+
(The MIT License)
12+
13+
Copyright (c) 2014 Jonathan Ong <[email protected]>
14+
Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]>
15+
16+
Permission is hereby granted, free of charge, to any person obtaining
17+
a copy of this software and associated documentation files (the
18+
'Software'), to deal in the Software without restriction, including
19+
without limitation the rights to use, copy, modify, merge, publish,
20+
distribute, sublicense, and/or sell copies of the Software, and to
21+
permit persons to whom the Software is furnished to do so, subject to
22+
the following conditions:
23+
24+
The above copyright notice and this permission notice shall be
25+
included in all copies or substantial portions of the Software.
26+
27+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
28+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
30+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
31+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
32+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
33+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34+
- sources: README.md
35+
text: |-
36+
[MIT](LICENSE)
37+
38+
[ci-image]: https://badgen.net/github/checks/expressjs/body-parser/master?label=ci
39+
[ci-url]: https://github.com/expressjs/body-parser/actions/workflows/ci.yml
40+
[coveralls-image]: https://badgen.net/coveralls/c/github/expressjs/body-parser/master
41+
[coveralls-url]: https://coveralls.io/r/expressjs/body-parser?branch=master
42+
[node-version-image]: https://badgen.net/npm/node/body-parser
43+
[node-version-url]: https://nodejs.org/en/download
44+
[npm-downloads-image]: https://badgen.net/npm/dm/body-parser
45+
[npm-url]: https://npmjs.org/package/body-parser
46+
[npm-version-image]: https://badgen.net/npm/v/body-parser
47+
[ossf-scorecard-badge]: https://api.scorecard.dev/projects/github.com/expressjs/body-parser/badge
48+
[ossf-scorecard-visualizer]: https://ossf.github.io/scorecard-visualizer/#/projects/github.com/expressjs/body-parser
49+
notices: []

.licenses/npm/bytes.dep.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
name: bytes
3+
version: 3.1.2
4+
type: npm
5+
summary: Utility to parse a string bytes to bytes and vice-versa
6+
homepage:
7+
license: mit
8+
licenses:
9+
- sources: LICENSE
10+
text: |
11+
(The MIT License)
12+
13+
Copyright (c) 2012-2014 TJ Holowaychuk <[email protected]>
14+
Copyright (c) 2015 Jed Watson <[email protected]>
15+
16+
Permission is hereby granted, free of charge, to any person obtaining
17+
a copy of this software and associated documentation files (the
18+
'Software'), to deal in the Software without restriction, including
19+
without limitation the rights to use, copy, modify, merge, publish,
20+
distribute, sublicense, and/or sell copies of the Software, and to
21+
permit persons to whom the Software is furnished to do so, subject to
22+
the following conditions:
23+
24+
The above copyright notice and this permission notice shall be
25+
included in all copies or substantial portions of the Software.
26+
27+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
28+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
30+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
31+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
32+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
33+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34+
- sources: Readme.md
35+
text: |-
36+
[MIT](LICENSE)
37+
38+
[ci-image]: https://badgen.net/github/checks/visionmedia/bytes.js/master?label=ci
39+
[ci-url]: https://github.com/visionmedia/bytes.js/actions?query=workflow%3Aci
40+
[coveralls-image]: https://badgen.net/coveralls/c/github/visionmedia/bytes.js/master
41+
[coveralls-url]: https://coveralls.io/r/visionmedia/bytes.js?branch=master
42+
[downloads-image]: https://badgen.net/npm/dm/bytes
43+
[downloads-url]: https://npmjs.org/package/bytes
44+
[npm-image]: https://badgen.net/npm/v/bytes
45+
[npm-url]: https://npmjs.org/package/bytes
46+
notices: []

0 commit comments

Comments
 (0)