wopee-mcp 1.0.1

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 (48) hide show
  1. package/INTEGRATION.md +441 -0
  2. package/LICENSE +200 -0
  3. package/QUICK_START.md +50 -0
  4. package/README.md +658 -0
  5. package/dist/config.d.ts +48 -0
  6. package/dist/config.js +165 -0
  7. package/dist/config.js.map +1 -0
  8. package/dist/graphql/client.d.ts +34 -0
  9. package/dist/graphql/client.js +75 -0
  10. package/dist/graphql/client.js.map +1 -0
  11. package/dist/index.d.ts +2 -0
  12. package/dist/index.js +672 -0
  13. package/dist/index.js.map +1 -0
  14. package/dist/tools/wopee_dispatch_agent.d.ts +8 -0
  15. package/dist/tools/wopee_dispatch_agent.js +41 -0
  16. package/dist/tools/wopee_dispatch_agent.js.map +1 -0
  17. package/dist/tools/wopee_dispatch_analysis.d.ts +8 -0
  18. package/dist/tools/wopee_dispatch_analysis.js +50 -0
  19. package/dist/tools/wopee_dispatch_analysis.js.map +1 -0
  20. package/dist/tools/wopee_fetch_analysis_suites.d.ts +8 -0
  21. package/dist/tools/wopee_fetch_analysis_suites.js +81 -0
  22. package/dist/tools/wopee_fetch_analysis_suites.js.map +1 -0
  23. package/dist/tools/wopee_generate_app_context.d.ts +8 -0
  24. package/dist/tools/wopee_generate_app_context.js +62 -0
  25. package/dist/tools/wopee_generate_app_context.js.map +1 -0
  26. package/dist/tools/wopee_generate_general_user_stories.d.ts +8 -0
  27. package/dist/tools/wopee_generate_general_user_stories.js +62 -0
  28. package/dist/tools/wopee_generate_general_user_stories.js.map +1 -0
  29. package/dist/tools/wopee_generate_test_cases.d.ts +8 -0
  30. package/dist/tools/wopee_generate_test_cases.js +74 -0
  31. package/dist/tools/wopee_generate_test_cases.js.map +1 -0
  32. package/dist/tools/wopee_generate_user_stories.d.ts +8 -0
  33. package/dist/tools/wopee_generate_user_stories.js +74 -0
  34. package/dist/tools/wopee_generate_user_stories.js.map +1 -0
  35. package/dist/tools/wopee_get_app_context.d.ts +8 -0
  36. package/dist/tools/wopee_get_app_context.js +41 -0
  37. package/dist/tools/wopee_get_app_context.js.map +1 -0
  38. package/dist/tools/wopee_get_test_cases.d.ts +9 -0
  39. package/dist/tools/wopee_get_test_cases.js +43 -0
  40. package/dist/tools/wopee_get_test_cases.js.map +1 -0
  41. package/dist/tools/wopee_get_user_stories.d.ts +8 -0
  42. package/dist/tools/wopee_get_user_stories.js +41 -0
  43. package/dist/tools/wopee_get_user_stories.js.map +1 -0
  44. package/dist/types/index.d.ts +425 -0
  45. package/dist/types/index.js +143 -0
  46. package/dist/types/index.js.map +1 -0
  47. package/env.example +7 -0
  48. package/package.json +117 -0
package/package.json ADDED
@@ -0,0 +1,117 @@
1
+ {
2
+ "name": "wopee-mcp",
3
+ "version": "1.0.1",
4
+ "description": "MCP server for Wopee.io autonomous testing platform",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "wopee-mcp": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist/**/*",
12
+ "README.md",
13
+ "LICENSE",
14
+ "env.example",
15
+ "INTEGRATION.md",
16
+ "QUICK_START.md"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsc && node scripts/add-js-extensions.js",
20
+ "build:clean": "rm -rf dist && npm run build",
21
+ "start": "node dist/index.js",
22
+ "dev": "tsx src/index.ts",
23
+ "test": "jest",
24
+ "test:watch": "jest --watch",
25
+ "test:coverage": "jest --coverage",
26
+ "test:integration": "jest --testPathPattern=integration",
27
+ "test:performance": "jest --testPathPattern=performance",
28
+ "lint": "eslint src/**/*.ts",
29
+ "lint:fix": "eslint src/**/*.ts --fix",
30
+ "prepublishOnly": "npm run build:clean && npm test",
31
+ "prepack": "npm run build:clean",
32
+ "postpack": "echo 'Package ready for publishing'",
33
+ "version": "npm run build:clean",
34
+ "postversion": "git push && git push --tags",
35
+ "publish:patch": "npm version patch && npm publish",
36
+ "publish:minor": "npm version minor && npm publish",
37
+ "publish:major": "npm version major && npm publish",
38
+ "publish:dry-run": "npm run build:clean && npm publish --dry-run",
39
+ "validate": "npm run lint && npm test && npm run build",
40
+ "security:audit": "npm audit --audit-level=moderate",
41
+ "security:check": "npm audit --audit-level=high",
42
+ "deps:check": "npm outdated",
43
+ "deps:update": "npx npm-check-updates -u",
44
+ "deps:update:patch": "npx npm-check-updates -u --target patch",
45
+ "deps:update:minor": "npx npm-check-updates -u --target minor",
46
+ "deps:update:major": "npx npm-check-updates -u --target major"
47
+ },
48
+ "keywords": [
49
+ "mcp",
50
+ "wopee",
51
+ "testing",
52
+ "autonomous",
53
+ "automation",
54
+ "graphql",
55
+ "model-context-protocol",
56
+ "ai-testing",
57
+ "test-automation",
58
+ "quality-assurance"
59
+ ],
60
+ "author": {
61
+ "name": "Wopee Labs",
62
+ "email": "contact@wopee.io",
63
+ "url": "https://wopee.io"
64
+ },
65
+ "license": "Apache-2.0",
66
+ "homepage": "https://github.com/autonomous-testing/wopee-mcp#readme",
67
+ "repository": {
68
+ "type": "git",
69
+ "url": "git+https://github.com/autonomous-testing/wopee-mcp.git"
70
+ },
71
+ "bugs": {
72
+ "url": "https://github.com/autonomous-testing/wopee-mcp/issues"
73
+ },
74
+ "funding": {
75
+ "type": "github",
76
+ "url": "https://github.com/sponsors/wopee-io"
77
+ },
78
+ "dependencies": {
79
+ "@modelcontextprotocol/sdk": "^0.5.0",
80
+ "dotenv": "^16.4.5",
81
+ "graphql-request": "^6.1.0",
82
+ "zod": "^3.23.8"
83
+ },
84
+ "devDependencies": {
85
+ "@semantic-release/changelog": "^6.0.3",
86
+ "@semantic-release/git": "^10.0.1",
87
+ "@semantic-release/npm": "^10.0.4",
88
+ "@types/jest": "^29.5.11",
89
+ "@types/node": "^20.11.0",
90
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
91
+ "@typescript-eslint/parser": "^6.21.0",
92
+ "eslint": "^8.56.0",
93
+ "jest": "^29.7.0",
94
+ "npm-check-updates": "^16.14.15",
95
+ "semantic-release": "^22.0.12",
96
+ "ts-jest": "^29.1.1",
97
+ "tsx": "^4.7.0",
98
+ "typescript": "^5.3.3"
99
+ },
100
+ "engines": {
101
+ "node": ">=18.0.0",
102
+ "npm": ">=8.0.0"
103
+ },
104
+ "os": [
105
+ "darwin",
106
+ "linux",
107
+ "win32"
108
+ ],
109
+ "cpu": [
110
+ "x64",
111
+ "arm64"
112
+ ],
113
+ "publishConfig": {
114
+ "access": "public",
115
+ "registry": "https://registry.npmjs.org/"
116
+ }
117
+ }