weixin-devtools-mcp 0.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.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "weixin-devtools-mcp",
3
+ "version": "0.0.1",
4
+ "description": "WeChat Mini Program automation MCP server with intelligent connection, page interaction, assertion validation and network monitoring",
5
+ "type": "module",
6
+ "author": "Wooter Shen",
7
+ "license": "MIT",
8
+ "keywords": [
9
+ "wechat",
10
+ "miniprogram",
11
+ "automation",
12
+ "testing",
13
+ "mcp",
14
+ "model-context-protocol",
15
+ "weixin",
16
+ "devtools",
17
+ "e2e",
18
+ "ui-testing"
19
+ ],
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/wooter-s/weixin-devtools-mcp.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/wooter-s/weixin-devtools-mcp/issues"
26
+ },
27
+ "homepage": "https://github.com/wooter-s/weixin-devtools-mcp#readme",
28
+ "bin": {
29
+ "weixin-devtools-mcp": "build/server.js"
30
+ },
31
+ "files": [
32
+ "build"
33
+ ],
34
+ "scripts": {
35
+ "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755'); require('fs').chmodSync('build/server.js', '755')\"",
36
+ "prepare": "npm run build",
37
+ "watch": "tsc --watch",
38
+ "inspector": "npx @modelcontextprotocol/inspector build/index.js",
39
+ "test": "vitest --run --exclude='**/*.integration.test.ts'",
40
+ "test:watch": "vitest --exclude='**/*.integration.test.ts'",
41
+ "test:coverage": "vitest --coverage --exclude='**/*.integration.test.ts'",
42
+ "test:integration": "RUN_INTEGRATION_TESTS=true vitest --run tests/*.integration.test.ts",
43
+ "test:integration:watch": "RUN_INTEGRATION_TESTS=true vitest tests/*.integration.test.ts",
44
+ "test:all": "npm test && npm run test:integration"
45
+ },
46
+ "dependencies": {
47
+ "@modelcontextprotocol/sdk": "0.6.0",
48
+ "miniprogram-automator": "^0.12.1",
49
+ "zod": "^3.25.76",
50
+ "zod-to-json-schema": "^3.24.6"
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^20.11.24",
54
+ "@vitest/coverage-v8": "^1.6.0",
55
+ "typescript": "^5.3.3",
56
+ "vitest": "^1.6.0"
57
+ }
58
+ }