@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.
Files changed (3) hide show
  1. package/README.md +6 -7
  2. package/README.md.tmp +0 -0
  3. package/package.json +10 -10
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # MCP Test Kit
2
2
 
3
- [![Tests](https://github.com/CrashBytes/map-test-kit/workflows/Tests/badge.svg)](https://github.com/CrashBytes/map-test-kit/actions)
4
- [![codecov](https://codecov.io/gh/CrashBytes/map-test-kit/branch/main/graph/badge.svg)](https://codecov.io/gh/CrashBytes/map-test-kit)
3
+ [![Tests](https://github.com/CrashBytes/mcp-test-kit/workflows/Tests/badge.svg)](https://github.com/CrashBytes/mcp-test-kit/actions)
4
+ [![codecov](https://codecov.io/gh/CrashBytes/mcp-test-kit/branch/main/graph/badge.svg)](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
- Claude ←─MCP──→│ MCP Server │ ←──────→│ Your Data │
48
- │ (Client) │ │ (Your Code) │ │ or Service
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.5",
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.25.2"
72
+ "@modelcontextprotocol/sdk": "^1.26.0"
73
73
  },
74
74
  "devDependencies": {
75
- "@types/node": "^22.0.0",
76
- "@typescript-eslint/eslint-plugin": "^8.0.0",
77
- "@typescript-eslint/parser": "^8.0.0",
78
- "@vitest/coverage-v8": "^2.0.0",
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": "^9.0.0",
81
- "eslint-plugin-prettier": "^5.0.0",
82
- "prettier": "^3.0.0",
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": "^2.1.9"
84
+ "vitest": "^4.0.18"
85
85
  }
86
86
  }