@erickwendel/ciphersuite-mcp 0.0.1 → 0.0.2

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.
@@ -0,0 +1,8 @@
1
+ {
2
+ "servers": {
3
+ "ciphersuite-mcp": {
4
+ "command": "node",
5
+ "args": ["--experimental-strip-types", "/Users/erickwendel/Downloads/projetos/ewit/cursos/ia-devs/pos-grad/modulo03/projetos/04-mcps-do-zero/src/index.ts"]
6
+ }
7
+ }
8
+ }
package/.vscode/mcp.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "servers": {
3
3
  "ciphersuite-mcp": {
4
- "command": "node",
5
- "args": ["--experimental-strip-types", "/Users/erickwendel/Downloads/projetos/ewit/cursos/ia-devs/pos-grad/modulo03/projetos/04-mcps-do-zero/src/index.ts"]
4
+ "command": "npx",
5
+ "args": ["-y", "@erickwendel/ciphersuite-mcp"]
6
6
  }
7
7
  }
8
8
  }
package/README.md CHANGED
@@ -47,7 +47,7 @@ Create (or open) `.vscode/mcp.json` in your workspace and add:
47
47
 
48
48
  ```json
49
49
  {
50
- "mcpServers": {
50
+ "servers": {
51
51
  "ciphersuite-mcp": {
52
52
  "command": "node",
53
53
  "args": ["--experimental-strip-types", "ABSOLUTE_PATH_TO_PROJECT/src/index.ts"]
@@ -59,7 +59,7 @@ Create (or open) `.vscode/mcp.json` in your workspace and add:
59
59
  or via npm
60
60
  ```json
61
61
  {
62
- "mcpServers": {
62
+ "servers": {
63
63
  "ciphersuite-mcp": {
64
64
  "command": "npx",
65
65
  "args": ["-y", "@erickwendel/ciphersuite-mcp"]
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@erickwendel/ciphersuite-mcp",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
7
- "commit": "./src/index.ts"
7
+ "ciphersuite-mcp": "./src/index.ts"
8
8
  },
9
9
  "scripts": {
10
10
  "start": "node src/index.ts",