@metrostar/comet-mcp 1.3.1 → 1.3.3
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/README.md +16 -9
- package/package.json +2 -2
- package/dist/utils.test.d.ts +0 -2
- package/dist/utils.test.d.ts.map +0 -1
- package/dist/utils.test.js +0 -1564
- package/dist/utils.test.js.map +0 -1
package/README.md
CHANGED
|
@@ -4,13 +4,26 @@ Comet MCP provides a set of tools that can be used by AI coding assistants like
|
|
|
4
4
|
|
|
5
5
|
## Getting Started
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Add the following to your mcp.json to connect VS Code Copilot to the Comet MCP server:
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### Workspace Configuration (Recommended)
|
|
10
10
|
|
|
11
11
|
```json
|
|
12
12
|
{
|
|
13
|
-
"
|
|
13
|
+
"servers": {
|
|
14
|
+
"comet": {
|
|
15
|
+
"command": "npx",
|
|
16
|
+
"args": ["@metrostar/comet-mcp"]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Profile Configuration
|
|
23
|
+
|
|
24
|
+
```json
|
|
25
|
+
{
|
|
26
|
+
"servers": {
|
|
14
27
|
"comet": {
|
|
15
28
|
"command": "npx",
|
|
16
29
|
"args": ["@metrostar/comet-mcp"],
|
|
@@ -22,12 +35,6 @@ Create an MCP configuration file to connect VS Code Copilot to the Comet MCP ser
|
|
|
22
35
|
}
|
|
23
36
|
```
|
|
24
37
|
|
|
25
|
-
### Manual Installation
|
|
26
|
-
|
|
27
|
-
```sh
|
|
28
|
-
npm install -g @metrostar/comet-mcp
|
|
29
|
-
```
|
|
30
|
-
|
|
31
38
|
## Available Tools
|
|
32
39
|
|
|
33
40
|
| Tool | Description | Parameters |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metrostar/comet-mcp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.3",
|
|
5
5
|
"description": "Model Context Protocol server for Comet development workflow",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
],
|
|
26
26
|
"types": "./dist/index.d.ts",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
28
|
+
"@modelcontextprotocol/sdk": "^1.25.1"
|
|
29
29
|
},
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
package/dist/utils.test.d.ts
DELETED
package/dist/utils.test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.test.d.ts","sourceRoot":"","sources":["../src/utils.test.ts"],"names":[],"mappings":""}
|