@testplanit/mcp-server 0.1.0

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/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@testplanit/mcp-server",
3
+ "version": "0.1.0",
4
+ "description": "Model Context Protocol server for TestPlanIt — exposes test-case data to AI agents over stdio.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "testplanit-mcp-server": "./dist/cli.js"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.js"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md"
21
+ ],
22
+ "keywords": [
23
+ "testplanit",
24
+ "mcp",
25
+ "model-context-protocol",
26
+ "ai",
27
+ "agent",
28
+ "test-management"
29
+ ],
30
+ "author": "TestPlanIt",
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/TestPlanIt/testplanit.git",
35
+ "directory": "packages/mcp-server"
36
+ },
37
+ "bugs": {
38
+ "url": "https://github.com/testplanit/testplanit/issues"
39
+ },
40
+ "homepage": "https://github.com/testplanit/testplanit/tree/main/packages/mcp-server#readme",
41
+ "engines": {
42
+ "node": ">=24"
43
+ },
44
+ "publishConfig": {
45
+ "provenance": true,
46
+ "access": "public",
47
+ "tag": "beta"
48
+ },
49
+ "dependencies": {
50
+ "@modelcontextprotocol/sdk": "^1.29.0",
51
+ "zod": "^4.3.6"
52
+ },
53
+ "devDependencies": {
54
+ "@prisma/client": "~6.19.3",
55
+ "@types/node": "^25.5.2",
56
+ "@vitest/coverage-v8": "^4.1.3",
57
+ "tsup": "^8.5.1",
58
+ "typescript": "^5.9.3",
59
+ "vitest": "^4.1.3"
60
+ },
61
+ "scripts": {
62
+ "build": "tsup",
63
+ "dev": "tsup --watch",
64
+ "test": "vitest",
65
+ "test:cov": "vitest --coverage",
66
+ "typecheck": "tsc --noEmit"
67
+ }
68
+ }