androjack-mcp 1.3.0 โ 1.3.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/README.md +10 -3
- package/build/http-server.js +1 -1
- package/build/index.js +1 -1
- package/package.json +3 -3
- package/src/http-server.ts +2 -2
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
# ๐ค AndroJack โ The Jack of All Android Trades
|
|
8
8
|
|
|
9
|
-

|
|
9
|
+

|
|
10
10
|
|
|
11
11
|
### *An MCP server that equips your AI coding assistant with live, verified Android knowledge โ so it builds from official sources, not from memory.*
|
|
12
12
|
|
|
@@ -20,9 +20,16 @@
|
|
|
20
20
|
[](LICENSE)
|
|
21
21
|
[](https://developer.android.com)
|
|
22
22
|
|
|
23
|
+
### ๐ One-Click Install
|
|
24
|
+
|
|
25
|
+
[](https://claude.ai/integrations/install-mcp?params=eyJuYW1lIjoiYW5kcm9qYWNrIiwiY29tbWFuZCI6Im5weCIsImFyZ3MiOlsiLXkiLCJhbmRyb2phY2stbWNwIl19)
|
|
26
|
+
[](https://cursor.com/install-mcp?name=androjack&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImFuZHJvamFjay1tY3AiXX0=)
|
|
27
|
+
[](https://kiro.dev/launch/mcp/add?name=androjack&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22androjack-mcp%22%5D%7D)
|
|
28
|
+
[](https://www.npmjs.com/package/androjack-mcp)
|
|
29
|
+
|
|
23
30
|
<br/>
|
|
24
31
|
|
|
25
|
-
**
|
|
32
|
+
**Also works with:** Windsurf ยท VS Code Copilot ยท Google Antigravity ยท JetBrains AI โ see [Manual Config](#-manual-config--copy--paste) below โ
|
|
26
33
|
|
|
27
34
|
<br/>
|
|
28
35
|
|
|
@@ -122,7 +129,7 @@ This is the most important thing to understand before you install AndroJack:
|
|
|
122
129
|
|
|
123
130
|
## ๐ฏ The Killer Argument
|
|
124
131
|
|
|
125
|
-
<img src="assets/killer_argument.png" alt="The Killer Argument โ AndroJack MCP" width="100%" />
|
|
132
|
+
<img src="https://raw.githubusercontent.com/VIKAS9793/AndroJack-mcp/main/assets/killer_argument.png" alt="The Killer Argument โ AndroJack MCP" width="100%" />
|
|
126
133
|
|
|
127
134
|
<br/>
|
|
128
135
|
|
package/build/http-server.js
CHANGED
|
@@ -45,7 +45,7 @@ export async function startHttpServer(server) {
|
|
|
45
45
|
res.writeHead(200, { "Content-Type": "application/json" });
|
|
46
46
|
res.end(JSON.stringify({
|
|
47
47
|
name: "androjack-mcp",
|
|
48
|
-
version: "1.
|
|
48
|
+
version: "1.3.1",
|
|
49
49
|
description: "Documentation-grounded Android engineering MCP server. " +
|
|
50
50
|
"Forces AI tools to verify official docs before generating Android/Kotlin code.",
|
|
51
51
|
mcp_endpoint: `http://${host}:${port}${MCP_PATH}`,
|
package/build/index.js
CHANGED
|
@@ -38,7 +38,7 @@ import { androidWearOsGuide } from "./tools/wear.js";
|
|
|
38
38
|
// โโ Server Instantiation โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
39
39
|
const server = new McpServer({
|
|
40
40
|
name: "androjack-mcp",
|
|
41
|
-
version: "1.3.
|
|
41
|
+
version: "1.3.1",
|
|
42
42
|
});
|
|
43
43
|
// โโ Tool 1: Official Android Documentation Search โโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
44
44
|
server.registerTool("android_official_search", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "androjack-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "AndroJack: AI that actually knows Android. Real-time dependency tracking, modern architectures, and zero hallucinations.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"type": "module",
|
|
24
24
|
"bin": {
|
|
25
|
-
"androjack-mcp": "
|
|
26
|
-
"androjack": "
|
|
25
|
+
"androjack-mcp": "build/index.js",
|
|
26
|
+
"androjack": "build/install.js"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "tsc",
|
package/src/http-server.ts
CHANGED
|
@@ -53,7 +53,7 @@ export async function startHttpServer(server: McpServer): Promise<void> {
|
|
|
53
53
|
res.end(
|
|
54
54
|
JSON.stringify({
|
|
55
55
|
name: "androjack-mcp",
|
|
56
|
-
version: "1.
|
|
56
|
+
version: "1.3.1",
|
|
57
57
|
description:
|
|
58
58
|
"Documentation-grounded Android engineering MCP server. " +
|
|
59
59
|
"Forces AI tools to verify official docs before generating Android/Kotlin code.",
|
|
@@ -168,7 +168,7 @@ export async function startHttpServer(server: McpServer): Promise<void> {
|
|
|
168
168
|
for (const sig of ["SIGINT", "SIGTERM"] as const) {
|
|
169
169
|
process.once(sig, async () => {
|
|
170
170
|
process.stderr.write(`\nAndroJack HTTP: shutting down (${sig})โฆ\n`);
|
|
171
|
-
for (const t of sessions.values()) await t.close().catch(() => {});
|
|
171
|
+
for (const t of sessions.values()) await t.close().catch(() => { });
|
|
172
172
|
httpServer.close(() => process.exit(0));
|
|
173
173
|
});
|
|
174
174
|
}
|
package/src/index.ts
CHANGED
|
@@ -41,7 +41,7 @@ import { androidWearOsGuide } from "./tools/wear.js";
|
|
|
41
41
|
// โโ Server Instantiation โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
42
42
|
const server = new McpServer({
|
|
43
43
|
name: "androjack-mcp",
|
|
44
|
-
version: "1.3.
|
|
44
|
+
version: "1.3.1",
|
|
45
45
|
});
|
|
46
46
|
|
|
47
47
|
// โโ Tool 1: Official Android Documentation Search โโโโโโโโโโโโโโโโโโโโโโโโโโ
|