@crashbytes/mcp-test-kit 0.1.4 → 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 +7 -5
  2. package/README.md.tmp +0 -0
  3. package/package.json +17 -25
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # MCP Test Kit
2
2
 
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
+
3
6
  > **A comprehensive testing framework for Model Context Protocol (MCP) servers**
4
7
 
5
8
  [![npm version](https://img.shields.io/npm/v/@crashbytes/mcp-test-kit.svg)](https://www.npmjs.com/package/@crashbytes/mcp-test-kit)
@@ -39,11 +42,10 @@ Here are some practical MCP servers you might build:
39
42
 
40
43
  ### How MCP Works
41
44
 
42
- ```
43
- ┌─────────────┐ ┌──────────────┐ ┌──────────────┐
44
- Claude ←─MCP──→│ MCP Server │ ←──────→│ Your Data │
45
- │ (Client) │ │ (Your Code) │ │ or Service
46
- └─────────────┘ └──────────────┘ └──────────────┘
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]
47
49
  ```
48
50
 
49
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,24 +1,24 @@
1
1
  {
2
2
  "name": "@crashbytes/mcp-test-kit",
3
- "version": "0.1.4",
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",
7
7
  "exports": {
8
8
  ".": {
9
+ "types": "./dist/index.d.ts",
9
10
  "import": "./dist/index.js",
10
- "require": "./dist/index.js",
11
- "types": "./dist/index.d.ts"
11
+ "require": "./dist/index.js"
12
12
  },
13
13
  "./matchers": {
14
+ "types": "./dist/matchers/index.d.ts",
14
15
  "import": "./dist/matchers/index.js",
15
- "require": "./dist/matchers/index.js",
16
- "types": "./dist/matchers/index.d.ts"
16
+ "require": "./dist/matchers/index.js"
17
17
  },
18
18
  "./mocks": {
19
+ "types": "./dist/mocks/index.d.ts",
19
20
  "import": "./dist/mocks/index.js",
20
- "require": "./dist/mocks/index.js",
21
- "types": "./dist/mocks/index.d.ts"
21
+ "require": "./dist/mocks/index.js"
22
22
  }
23
23
  },
24
24
  "files": [
@@ -69,26 +69,18 @@
69
69
  "node": ">=18.0.0"
70
70
  },
71
71
  "dependencies": {
72
- "@modelcontextprotocol/sdk": "^1.0.4"
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",
83
- "typescript": "^5.6.0",
84
- "vitest": "^2.0.0"
85
- },
86
- "peerDependencies": {
87
- "vitest": ">=1.0.0"
88
- },
89
- "peerDependenciesMeta": {
90
- "vitest": {
91
- "optional": true
92
- }
80
+ "eslint-config-prettier": "^10.1.8",
81
+ "eslint-plugin-prettier": "^5.5.5",
82
+ "prettier": "^3.8.1",
83
+ "typescript": "^5.9.3",
84
+ "vitest": "^4.0.18"
93
85
  }
94
86
  }