awesome-copilot-mcp 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mcp/server.json +19 -0
- package/README.md +3 -0
- package/dist/cli.js +1 -1
- package/metadata.json +1 -1
- package/package.json +15 -12
package/.mcp/server.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
|
|
3
|
+
"name": "io.github.rbbtsnow/awesome-copilot-mcp",
|
|
4
|
+
"version": "0.2.1",
|
|
5
|
+
"description": "Model Context Protocol server for awesome-copilot agents and collections",
|
|
6
|
+
"title": "Awesome Copilot MCP Server",
|
|
7
|
+
"websiteUrl": "https://github.com/RbBtSn0w/awesome-copilot-mcp",
|
|
8
|
+
"packages": [
|
|
9
|
+
{
|
|
10
|
+
"registryType": "npm",
|
|
11
|
+
"identifier": "awesome-copilot-mcp",
|
|
12
|
+
"version": "0.2.1"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"url": "https://github.com/RbBtSn0w/awesome-copilot-mcp",
|
|
17
|
+
"source": "github"
|
|
18
|
+
}
|
|
19
|
+
}
|
package/README.md
CHANGED
|
@@ -8,6 +8,9 @@ A Model Context Protocol (MCP) server that provides access to [awesome-copilot](
|
|
|
8
8
|
|
|
9
9
|
## Quick Start (No Installation Required)
|
|
10
10
|
|
|
11
|
+
[](vscode:mcp/install?%7B%22name%22%3A%22awesome-copilot%22%2C%22type%22%3A%22stdio%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22awesome-copilot-mcp%22%2C%22start%22%5D%7D) [](vscode-insiders:mcp/install?%7B%22name%22%3A%22awesome-copilot%22%2C%22type%22%3A%22stdio%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22awesome-copilot-mcp%22%2C%22start%22%5D%7D)
|
|
12
|
+
|
|
13
|
+
|
|
11
14
|
Add to your MCP Client configuration (e.g., Claude Desktop or VS Code):
|
|
12
15
|
|
|
13
16
|
```json
|
package/dist/cli.js
CHANGED
|
@@ -51,7 +51,7 @@ const program = new commander_1.Command();
|
|
|
51
51
|
program
|
|
52
52
|
.name('awesome-copilot-mcp')
|
|
53
53
|
.description('Model Context Protocol server for awesome-copilot agents and collections')
|
|
54
|
-
.version('0.1
|
|
54
|
+
.version('0.2.1');
|
|
55
55
|
// Global options
|
|
56
56
|
program
|
|
57
57
|
.option('--json', 'Output in JSON format')
|
package/metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "awesome-copilot-mcp",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Model Context Protocol server for awesome-copilot agents and collections",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
8
8
|
"metadata.json",
|
|
9
|
+
".mcp",
|
|
9
10
|
"README.md",
|
|
10
11
|
"LICENSE"
|
|
11
12
|
],
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"release": "semantic-release"
|
|
40
41
|
},
|
|
41
42
|
"prepare": "husky install",
|
|
43
|
+
"mcpName": "io.github.rbbtsnow/awesome-copilot-mcp",
|
|
42
44
|
"keywords": [
|
|
43
45
|
"mcp",
|
|
44
46
|
"model-context-protocol",
|
|
@@ -70,6 +72,14 @@
|
|
|
70
72
|
"winston": "^3.11.0"
|
|
71
73
|
},
|
|
72
74
|
"devDependencies": {
|
|
75
|
+
"@commitlint/cli": "^17.0.0",
|
|
76
|
+
"@commitlint/config-conventional": "^17.0.0",
|
|
77
|
+
"@semantic-release/changelog": "^6.0.0",
|
|
78
|
+
"@semantic-release/commit-analyzer": "^9.0.0",
|
|
79
|
+
"@semantic-release/exec": "^6.0.3",
|
|
80
|
+
"@semantic-release/git": "^10.0.0",
|
|
81
|
+
"@semantic-release/github": "^9.0.0",
|
|
82
|
+
"@semantic-release/release-notes-generator": "^11.0.0",
|
|
73
83
|
"@types/express": "^5.0.6",
|
|
74
84
|
"@types/fs-extra": "^11.0.4",
|
|
75
85
|
"@types/js-yaml": "^4.0.9",
|
|
@@ -79,19 +89,12 @@
|
|
|
79
89
|
"@typescript-eslint/eslint-plugin": "^8.50.0",
|
|
80
90
|
"@typescript-eslint/parser": "^8.50.0",
|
|
81
91
|
"@vitest/coverage-v8": "^4.0.16",
|
|
92
|
+
"conventional-changelog-conventionalcommits": "^6.0.0",
|
|
82
93
|
"eslint": "^8.57.1",
|
|
94
|
+
"husky": "^8.0.0",
|
|
95
|
+
"semantic-release": "^21.0.0",
|
|
83
96
|
"supertest": "^6.3.4",
|
|
84
97
|
"typescript": "^5.3.0",
|
|
85
|
-
"vitest": "^4.0.16"
|
|
86
|
-
"semantic-release": "^21.0.0",
|
|
87
|
-
"@semantic-release/changelog": "^6.0.0",
|
|
88
|
-
"@semantic-release/git": "^10.0.0",
|
|
89
|
-
"@semantic-release/github": "^9.0.0",
|
|
90
|
-
"@semantic-release/commit-analyzer": "^9.0.0",
|
|
91
|
-
"@semantic-release/release-notes-generator": "^11.0.0",
|
|
92
|
-
"conventional-changelog-conventionalcommits": "^6.0.0",
|
|
93
|
-
"husky": "^8.0.0",
|
|
94
|
-
"@commitlint/cli": "^17.0.0",
|
|
95
|
-
"@commitlint/config-conventional": "^17.0.0"
|
|
98
|
+
"vitest": "^4.0.16"
|
|
96
99
|
}
|
|
97
100
|
}
|