androjack-mcp 1.3.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/.github/ISSUE_TEMPLATE/bug_report.md +40 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +34 -0
- package/.github/pull_request_template.md +16 -0
- package/CONTRIBUTING.md +27 -0
- package/LICENSE +21 -0
- package/README.md +592 -0
- package/SECURITY.md +26 -0
- package/assets/AndroJack banner.png +0 -0
- package/assets/killer_argument.png +0 -0
- package/build/constants.js +412 -0
- package/build/http-server.js +163 -0
- package/build/http.js +151 -0
- package/build/index.js +553 -0
- package/build/install.js +379 -0
- package/build/logger.js +57 -0
- package/build/tools/api-level.js +170 -0
- package/build/tools/api36-compliance.js +282 -0
- package/build/tools/architecture.js +75 -0
- package/build/tools/build-publish.js +362 -0
- package/build/tools/component.js +90 -0
- package/build/tools/debugger.js +82 -0
- package/build/tools/gradle.js +234 -0
- package/build/tools/kmp.js +348 -0
- package/build/tools/kotlin-patterns.js +500 -0
- package/build/tools/large-screen.js +366 -0
- package/build/tools/m3-expressive.js +447 -0
- package/build/tools/navigation3.js +331 -0
- package/build/tools/ondevice-ai.js +283 -0
- package/build/tools/permissions.js +404 -0
- package/build/tools/play-policy.js +221 -0
- package/build/tools/scalability.js +621 -0
- package/build/tools/search.js +89 -0
- package/build/tools/testing.js +439 -0
- package/build/tools/wear.js +337 -0
- package/build/tools/xr.js +274 -0
- package/config/antigravity_mcp.json +32 -0
- package/config/claude_desktop_config.json +17 -0
- package/config/cursor_mcp.json +21 -0
- package/config/jetbrains_mcp.json +28 -0
- package/config/kiro_mcp.json +40 -0
- package/config/vscode_mcp.json +24 -0
- package/config/windsurf_mcp.json +18 -0
- package/package.json +51 -0
- package/src/constants.ts +436 -0
- package/src/http-server.ts +186 -0
- package/src/http.ts +190 -0
- package/src/index.ts +702 -0
- package/src/install.ts +441 -0
- package/src/logger.ts +67 -0
- package/src/tools/api-level.ts +198 -0
- package/src/tools/api36-compliance.ts +289 -0
- package/src/tools/architecture.ts +94 -0
- package/src/tools/build-publish.ts +379 -0
- package/src/tools/component.ts +106 -0
- package/src/tools/debugger.ts +111 -0
- package/src/tools/gradle.ts +288 -0
- package/src/tools/kmp.ts +352 -0
- package/src/tools/kotlin-patterns.ts +534 -0
- package/src/tools/large-screen.ts +391 -0
- package/src/tools/m3-expressive.ts +473 -0
- package/src/tools/navigation3.ts +338 -0
- package/src/tools/ondevice-ai.ts +287 -0
- package/src/tools/permissions.ts +445 -0
- package/src/tools/play-policy.ts +229 -0
- package/src/tools/scalability.ts +646 -0
- package/src/tools/search.ts +112 -0
- package/src/tools/testing.ts +460 -0
- package/src/tools/wear.ts +343 -0
- package/src/tools/xr.ts +278 -0
- package/tsconfig.json +17 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
name: Bug Report
|
|
2
|
+
description: File a report to help us improve AndroJack-mcp
|
|
3
|
+
title: "[BUG] <Short description of the bug>"
|
|
4
|
+
labels: [bug]
|
|
5
|
+
assignees: []
|
|
6
|
+
body:
|
|
7
|
+
- type: markdown
|
|
8
|
+
attributes:
|
|
9
|
+
value: |
|
|
10
|
+
Thanks for taking the time to fill out this bug report! 🤖
|
|
11
|
+
- type: input
|
|
12
|
+
id: environment
|
|
13
|
+
attributes:
|
|
14
|
+
label: Environment
|
|
15
|
+
description: What IDE (Cursor, Windsurf, etc.) and Node.js version are you using?
|
|
16
|
+
placeholder: e.g., Cursor v0.40, Node v18.1.0
|
|
17
|
+
validations:
|
|
18
|
+
required: true
|
|
19
|
+
- type: textarea
|
|
20
|
+
id: reproduce
|
|
21
|
+
attributes:
|
|
22
|
+
label: Reproduction Steps
|
|
23
|
+
description: How can we reproduce the issue?
|
|
24
|
+
placeholder: |
|
|
25
|
+
1. Ask the AI to build X
|
|
26
|
+
2. Tool call Y fails with error Z
|
|
27
|
+
validations:
|
|
28
|
+
required: true
|
|
29
|
+
- type: textarea
|
|
30
|
+
id: expected
|
|
31
|
+
attributes:
|
|
32
|
+
label: Expected Behavior
|
|
33
|
+
description: What did you expect to happen?
|
|
34
|
+
validations:
|
|
35
|
+
required: true
|
|
36
|
+
- type: textarea
|
|
37
|
+
id: screenshots
|
|
38
|
+
attributes:
|
|
39
|
+
label: Screenshots/Logs
|
|
40
|
+
description: If applicable, add screenshots or paste terminal logs.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: Feature Request
|
|
2
|
+
description: Propose a new tool or improvement for AndroJack-mcp
|
|
3
|
+
title: "[FEATURE] <Short description of the request>"
|
|
4
|
+
labels: [enhancement]
|
|
5
|
+
assignees: []
|
|
6
|
+
body:
|
|
7
|
+
- type: markdown
|
|
8
|
+
attributes:
|
|
9
|
+
value: |
|
|
10
|
+
Thanks for helping make AndroJack-mcp even better! 🚀
|
|
11
|
+
- type: textarea
|
|
12
|
+
id: problem
|
|
13
|
+
attributes:
|
|
14
|
+
label: Problem
|
|
15
|
+
description: Is your feature request related to a problem? Please describe.
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
18
|
+
- type: textarea
|
|
19
|
+
id: solution
|
|
20
|
+
attributes:
|
|
21
|
+
label: Solution
|
|
22
|
+
description: Describe the solution you'd like to see.
|
|
23
|
+
validations:
|
|
24
|
+
required: true
|
|
25
|
+
- type: textarea
|
|
26
|
+
id: alternatives
|
|
27
|
+
attributes:
|
|
28
|
+
label: Alternatives
|
|
29
|
+
description: Describe any alternative solutions or features you've considered.
|
|
30
|
+
- type: textarea
|
|
31
|
+
id: context
|
|
32
|
+
attributes:
|
|
33
|
+
label: Additional Context
|
|
34
|
+
description: Add any other context or screenshots about the feature request here.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## 🔍 Overview
|
|
2
|
+
Briefly describe the change(s) proposed in this PR.
|
|
3
|
+
|
|
4
|
+
## ✅ Contribution Checklist
|
|
5
|
+
Please review and check the following:
|
|
6
|
+
- [ ] My code follows the code style of this project.
|
|
7
|
+
- [ ] I have updated the documentation as needed.
|
|
8
|
+
- [ ] I have added/updated tests (if applicable) and they pass.
|
|
9
|
+
- [ ] All new and existing tests passed.
|
|
10
|
+
- [ ] My change requires a change to the .github/ guidelines.
|
|
11
|
+
|
|
12
|
+
## 🛠️ Reproduction / Verification
|
|
13
|
+
How was this change verified? (e.g., tested with Claude Desktop, MCP Inspector, etc.)
|
|
14
|
+
|
|
15
|
+
## 🔗 Related Issues
|
|
16
|
+
Fixes #[issue-number]
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Contributing to AndroJack-MCP
|
|
2
|
+
|
|
3
|
+
First off, thank you for considering contributing to AndroJack-MCP! It's people like you that make AndroJack such a great tool for the Android community.
|
|
4
|
+
|
|
5
|
+
## 🚀 How Can I Contribute?
|
|
6
|
+
|
|
7
|
+
### Reporting Bugs
|
|
8
|
+
If you find a bug, please open an issue at [https://github.com/VIKAS9793/AndroJack-mcp/issues](https://github.com/VIKAS9793/AndroJack-mcp/issues). Please include:
|
|
9
|
+
- A clear, descriptive title.
|
|
10
|
+
- Steps to reproduce the issue.
|
|
11
|
+
- Expected vs. actual behavior.
|
|
12
|
+
|
|
13
|
+
### Suggesting Enhancements
|
|
14
|
+
Have an idea for a new tool or feature? Open an issue with the "enhancement" label at [https://github.com/VIKAS9793/AndroJack-mcp/issues](https://github.com/VIKAS9793/AndroJack-mcp/issues).
|
|
15
|
+
|
|
16
|
+
### Pull Requests
|
|
17
|
+
1. Fork the repo: [https://github.com/VIKAS9793/AndroJack-mcp](https://github.com/VIKAS9793/AndroJack-mcp)
|
|
18
|
+
2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
|
|
19
|
+
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
|
|
20
|
+
4. Push to the branch (`git push origin feature/AmazingFeature`)
|
|
21
|
+
5. Open a Pull Request.
|
|
22
|
+
|
|
23
|
+
## 🛠️ Local Development Setup
|
|
24
|
+
See the [README.md](https://github.com/VIKAS9793/AndroJack-mcp/blob/main/README.md) for local setup instructions.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
*Maintained by [Vikas Sahani](https://github.com/VIKAS9793)*
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Vikas Sahani
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|