mcp-maestro-mobile-ai 1.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/CHANGELOG.md +114 -0
- package/CONTRIBUTING.md +417 -0
- package/LICENSE +22 -0
- package/README.md +719 -0
- package/ROADMAP.md +239 -0
- package/docs/ENTERPRISE_READINESS.md +545 -0
- package/docs/MCP_SETUP.md +180 -0
- package/docs/PRIVACY.md +198 -0
- package/docs/REACT_NATIVE_AUTOMATION_GUIDELINES.md +584 -0
- package/docs/SECURITY.md +573 -0
- package/package.json +69 -0
- package/prompts/example-login-tests.txt +9 -0
- package/prompts/example-youtube-tests.txt +8 -0
- package/src/mcp-server/index.js +625 -0
- package/src/mcp-server/tools/contextTools.js +194 -0
- package/src/mcp-server/tools/promptTools.js +191 -0
- package/src/mcp-server/tools/runTools.js +357 -0
- package/src/mcp-server/tools/utilityTools.js +721 -0
- package/src/mcp-server/tools/validateTools.js +220 -0
- package/src/mcp-server/utils/appContext.js +295 -0
- package/src/mcp-server/utils/logger.js +52 -0
- package/src/mcp-server/utils/maestro.js +508 -0
- package/templates/mcp-config-claude-desktop.json +15 -0
- package/templates/mcp-config-cursor.json +15 -0
- package/templates/mcp-config-vscode.json +13 -0
package/ROADMAP.md
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
# Roadmap
|
|
2
|
+
|
|
3
|
+
> **Maestro MCP Server** - Product Roadmap
|
|
4
|
+
|
|
5
|
+
This document outlines the planned development trajectory for Maestro MCP. Items are subject to change based on community feedback and priorities.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Vision
|
|
10
|
+
|
|
11
|
+
**Make mobile test automation accessible to everyone through natural language.**
|
|
12
|
+
|
|
13
|
+
Transform how teams approach mobile testing by enabling:
|
|
14
|
+
- Non-technical testers to write effective tests
|
|
15
|
+
- Rapid test creation without learning new syntax
|
|
16
|
+
- AI-assisted debugging and maintenance
|
|
17
|
+
- Enterprise-grade reliability and security
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Release Timeline
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
2025 Q1 2025 Q2 2025 Q3 2025 Q4
|
|
25
|
+
│ │ │ │
|
|
26
|
+
▼ ▼ ▼ ▼
|
|
27
|
+
┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐
|
|
28
|
+
│ v1.x │ │ v2.x │ │ v3.x │ │ v4.x │
|
|
29
|
+
│ Security │ │ Platform │ │ Scale │ │ Enterprise│
|
|
30
|
+
│ & CI │ │ & Quality│ │ & Perf │ │ Features │
|
|
31
|
+
└──────────┘ └──────────┘ └──────────┘ └──────────┘
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Q1 2025: Security & CI Foundation
|
|
37
|
+
|
|
38
|
+
**Theme**: Enterprise Trust & Automation
|
|
39
|
+
|
|
40
|
+
### v1.1.0 - Security Boundaries
|
|
41
|
+
|
|
42
|
+
| Feature | Priority | Status |
|
|
43
|
+
|---------|----------|--------|
|
|
44
|
+
| Safe Mode (default ON) | 🔴 Critical | 🔲 Planned |
|
|
45
|
+
| Command allowlist | 🔴 Critical | 🔲 Planned |
|
|
46
|
+
| Blocked operations list | 🔴 Critical | 🔲 Planned |
|
|
47
|
+
| Input validation (Zod schemas) | 🟠 High | 🔲 Planned |
|
|
48
|
+
|
|
49
|
+
### v1.2.0 - CI/CD Mode
|
|
50
|
+
|
|
51
|
+
| Feature | Priority | Status |
|
|
52
|
+
|---------|----------|--------|
|
|
53
|
+
| `--ci` headless mode | 🔴 Critical | 🔲 Planned |
|
|
54
|
+
| Exit codes (0/1/2) | 🔴 Critical | 🔲 Planned |
|
|
55
|
+
| `--prompt-file` direct execution | 🟠 High | 🔲 Planned |
|
|
56
|
+
| JUnit XML output | 🟠 High | 🔲 Planned |
|
|
57
|
+
|
|
58
|
+
### v1.3.0 - Audit & Observability
|
|
59
|
+
|
|
60
|
+
| Feature | Priority | Status |
|
|
61
|
+
|---------|----------|--------|
|
|
62
|
+
| Enhanced audit trail | 🟠 High | 🔲 Planned |
|
|
63
|
+
| YAML preservation | 🟠 High | 🔲 Planned |
|
|
64
|
+
| Structured logging (JSON) | 🟡 Medium | 🔲 Planned |
|
|
65
|
+
| Health check tool | 🟡 Medium | 🔲 Planned |
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Q2 2025: Platform & Quality
|
|
70
|
+
|
|
71
|
+
**Theme**: Cross-Platform & Reliability
|
|
72
|
+
|
|
73
|
+
### v2.0.0 - iOS Support
|
|
74
|
+
|
|
75
|
+
| Feature | Priority | Status |
|
|
76
|
+
|---------|----------|--------|
|
|
77
|
+
| iOS device detection | 🔴 Critical | 🔲 Planned |
|
|
78
|
+
| iOS app installation check | 🔴 Critical | 🔲 Planned |
|
|
79
|
+
| iOS screenshot capture | 🟠 High | 🔲 Planned |
|
|
80
|
+
| Cross-platform test definitions | 🟠 High | 🔲 Planned |
|
|
81
|
+
|
|
82
|
+
### v2.1.0 - TypeScript Migration
|
|
83
|
+
|
|
84
|
+
| Feature | Priority | Status |
|
|
85
|
+
|---------|----------|--------|
|
|
86
|
+
| Full TypeScript conversion | 🟠 High | 🔲 Planned |
|
|
87
|
+
| Type definitions (.d.ts) | 🟠 High | 🔲 Planned |
|
|
88
|
+
| Strict mode enabled | 🟡 Medium | 🔲 Planned |
|
|
89
|
+
|
|
90
|
+
### v2.2.0 - Test Quality
|
|
91
|
+
|
|
92
|
+
| Feature | Priority | Status |
|
|
93
|
+
|---------|----------|--------|
|
|
94
|
+
| Unit test suite (80% coverage) | 🟠 High | 🔲 Planned |
|
|
95
|
+
| Integration tests | 🟠 High | 🔲 Planned |
|
|
96
|
+
| E2E test framework | 🟡 Medium | 🔲 Planned |
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## Q3 2025: Scale & Performance
|
|
101
|
+
|
|
102
|
+
**Theme**: Speed & Flexibility
|
|
103
|
+
|
|
104
|
+
### v3.0.0 - Parallel Execution
|
|
105
|
+
|
|
106
|
+
| Feature | Priority | Status |
|
|
107
|
+
|---------|----------|--------|
|
|
108
|
+
| Parallel test execution | 🟠 High | 🔲 Planned |
|
|
109
|
+
| Multi-device orchestration | 🟠 High | 🔲 Planned |
|
|
110
|
+
| Load distribution | 🟡 Medium | 🔲 Planned |
|
|
111
|
+
|
|
112
|
+
### v3.1.0 - Reporting
|
|
113
|
+
|
|
114
|
+
| Feature | Priority | Status |
|
|
115
|
+
|---------|----------|--------|
|
|
116
|
+
| HTML report generation | 🟠 High | 🔲 Planned |
|
|
117
|
+
| Allure integration | 🟡 Medium | 🔲 Planned |
|
|
118
|
+
| Test history & trends | 🟡 Medium | 🔲 Planned |
|
|
119
|
+
| Flaky test detection | 🟡 Medium | 🔲 Planned |
|
|
120
|
+
|
|
121
|
+
### v3.2.0 - Extensibility
|
|
122
|
+
|
|
123
|
+
| Feature | Priority | Status |
|
|
124
|
+
|---------|----------|--------|
|
|
125
|
+
| Plugin/hook system | 🟡 Medium | 🔲 Planned |
|
|
126
|
+
| Custom tool registration | 🟡 Medium | 🔲 Planned |
|
|
127
|
+
| Event webhooks | 🟡 Medium | 🔲 Planned |
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## Q4 2025: Enterprise Features
|
|
132
|
+
|
|
133
|
+
**Theme**: Enterprise Scale & Governance
|
|
134
|
+
|
|
135
|
+
### v4.0.0 - Governance
|
|
136
|
+
|
|
137
|
+
| Feature | Priority | Status |
|
|
138
|
+
|---------|----------|--------|
|
|
139
|
+
| RBAC (Role-Based Access) | 🟠 High | 🔲 Planned |
|
|
140
|
+
| Configuration governance | 🟠 High | 🔲 Planned |
|
|
141
|
+
| Audit log export | 🟡 Medium | 🔲 Planned |
|
|
142
|
+
|
|
143
|
+
### v4.1.0 - Integrations
|
|
144
|
+
|
|
145
|
+
| Feature | Priority | Status |
|
|
146
|
+
|---------|----------|--------|
|
|
147
|
+
| Slack notifications | 🟡 Medium | 🔲 Planned |
|
|
148
|
+
| Teams notifications | 🟡 Medium | 🔲 Planned |
|
|
149
|
+
| Jira integration | 🟡 Medium | 🔲 Planned |
|
|
150
|
+
| TestRail integration | 🟢 Low | 🔲 Planned |
|
|
151
|
+
|
|
152
|
+
### v4.2.0 - Web Dashboard (Optional)
|
|
153
|
+
|
|
154
|
+
| Feature | Priority | Status |
|
|
155
|
+
|---------|----------|--------|
|
|
156
|
+
| Web-based dashboard | 🟡 Medium | 🔲 Planned |
|
|
157
|
+
| Visual test management | 🟡 Medium | 🔲 Planned |
|
|
158
|
+
| Real-time execution view | 🟢 Low | 🔲 Planned |
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## 2026 and Beyond
|
|
163
|
+
|
|
164
|
+
### Exploration Areas
|
|
165
|
+
|
|
166
|
+
| Area | Description |
|
|
167
|
+
|------|-------------|
|
|
168
|
+
| **Visual Testing** | Screenshot comparison, visual regression |
|
|
169
|
+
| **AI Improvements** | Smarter selector generation, self-healing tests |
|
|
170
|
+
| **Cloud Execution** | Optional cloud device farms |
|
|
171
|
+
| **Multi-tenant SaaS** | Managed service offering |
|
|
172
|
+
| **Cross-platform** | Flutter, Xamarin, native support |
|
|
173
|
+
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
## Priority Legend
|
|
177
|
+
|
|
178
|
+
| Priority | Meaning |
|
|
179
|
+
|----------|---------|
|
|
180
|
+
| 🔴 Critical | Required for enterprise adoption |
|
|
181
|
+
| 🟠 High | Significantly improves value |
|
|
182
|
+
| 🟡 Medium | Good to have |
|
|
183
|
+
| 🟢 Low | Nice to have |
|
|
184
|
+
|
|
185
|
+
## Status Legend
|
|
186
|
+
|
|
187
|
+
| Status | Meaning |
|
|
188
|
+
|--------|---------|
|
|
189
|
+
| ✅ Done | Released |
|
|
190
|
+
| 🔄 In Progress | Currently being developed |
|
|
191
|
+
| 🔲 Planned | Scheduled for development |
|
|
192
|
+
| 💭 Considering | Under evaluation |
|
|
193
|
+
|
|
194
|
+
---
|
|
195
|
+
|
|
196
|
+
## How to Influence the Roadmap
|
|
197
|
+
|
|
198
|
+
### Feature Requests
|
|
199
|
+
|
|
200
|
+
1. Open a [GitHub Issue](https://github.com/krunal-mahera/mcp-maestro-mobile-ai/issues)
|
|
201
|
+
2. Use the "Feature Request" template
|
|
202
|
+
3. Describe the use case and expected behavior
|
|
203
|
+
4. Vote (👍) on existing requests
|
|
204
|
+
|
|
205
|
+
### Priority Feedback
|
|
206
|
+
|
|
207
|
+
- Enterprise customers can prioritize features
|
|
208
|
+
- Community votes influence scheduling
|
|
209
|
+
- Security issues always take priority
|
|
210
|
+
|
|
211
|
+
---
|
|
212
|
+
|
|
213
|
+
## Completed Milestones
|
|
214
|
+
|
|
215
|
+
### ✅ v1.0.0 - Foundation (January 2025)
|
|
216
|
+
|
|
217
|
+
- [x] MCP server implementation
|
|
218
|
+
- [x] 14 core tools
|
|
219
|
+
- [x] Device management
|
|
220
|
+
- [x] Result storage
|
|
221
|
+
- [x] Retry mechanism
|
|
222
|
+
- [x] Pre-flight checks
|
|
223
|
+
- [x] npm publication
|
|
224
|
+
|
|
225
|
+
---
|
|
226
|
+
|
|
227
|
+
## Disclaimer
|
|
228
|
+
|
|
229
|
+
This roadmap represents current intentions and is subject to change. Features may be added, removed, or rescheduled based on:
|
|
230
|
+
|
|
231
|
+
- Community feedback
|
|
232
|
+
- Technical constraints
|
|
233
|
+
- Resource availability
|
|
234
|
+
- Market conditions
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
*Last Updated: January 2025*
|
|
239
|
+
|