@crashbytes/mcp-test-kit 0.1.5 → 0.1.6
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 +6 -7
- package/README.md.tmp +0 -0
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# MCP Test Kit
|
|
2
2
|
|
|
3
|
-
[](https://github.com/CrashBytes/mcp-test-kit/actions)
|
|
4
|
+
[](https://codecov.io/gh/CrashBytes/mcp-test-kit)
|
|
5
5
|
|
|
6
6
|
> **A comprehensive testing framework for Model Context Protocol (MCP) servers**
|
|
7
7
|
|
|
@@ -42,11 +42,10 @@ Here are some practical MCP servers you might build:
|
|
|
42
42
|
|
|
43
43
|
### How MCP Works
|
|
44
44
|
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
└─────────────┘ └──────────────┘ └──────────────┘
|
|
45
|
+
```mermaid
|
|
46
|
+
graph LR
|
|
47
|
+
A[Claude<br/>Client] <-->|MCP| B[MCP Server<br/>Your Code]
|
|
48
|
+
B <--> C[Your Data<br/>or Service]
|
|
50
49
|
```
|
|
51
50
|
|
|
52
51
|
The MCP server acts as a bridge between Claude and your data/services, exposing them through a standardized protocol.
|
package/README.md.tmp
ADDED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crashbytes/mcp-test-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Testing framework for Model Context Protocol (MCP) servers - Jest/Vitest for MCP",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -69,18 +69,18 @@
|
|
|
69
69
|
"node": ">=18.0.0"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
72
|
+
"@modelcontextprotocol/sdk": "^1.26.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@types/node": "^
|
|
76
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
77
|
-
"@typescript-eslint/parser": "^8.
|
|
78
|
-
"@vitest/coverage-v8": "^
|
|
75
|
+
"@types/node": "^25.2.2",
|
|
76
|
+
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
77
|
+
"@typescript-eslint/parser": "^8.54.0",
|
|
78
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
79
79
|
"eslint": "^9.0.0",
|
|
80
|
-
"eslint-config-prettier": "^
|
|
81
|
-
"eslint-plugin-prettier": "^5.
|
|
82
|
-
"prettier": "^3.
|
|
80
|
+
"eslint-config-prettier": "^10.1.8",
|
|
81
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
82
|
+
"prettier": "^3.8.1",
|
|
83
83
|
"typescript": "^5.9.3",
|
|
84
|
-
"vitest": "^
|
|
84
|
+
"vitest": "^4.0.18"
|
|
85
85
|
}
|
|
86
86
|
}
|