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

|
|
9
|
+

|
|
10
|
+
|
|
11
|
+
### ๐ฌ See AndroJack in Action
|
|
12
|
+
|
|
13
|
+
[](https://youtu.be/O2aFyObV-B0)
|
|
10
14
|
|
|
11
15
|
### *An MCP server that equips your AI coding assistant with live, verified Android knowledge โ so it builds from official sources, not from memory.*
|
|
12
16
|
|
|
13
17
|
<br/>
|
|
14
18
|
|
|
15
19
|
[](https://www.npmjs.com/package/androjack-mcp)
|
|
20
|
+
[](https://github.com/VIKAS9793/AndroJack-mcp/stargazers)
|
|
16
21
|
[](https://nodejs.org)
|
|
17
22
|
[](https://modelcontextprotocol.io)
|
|
18
23
|
[](https://typescriptlang.org)
|
|
@@ -20,9 +25,16 @@
|
|
|
20
25
|
[](LICENSE)
|
|
21
26
|
[](https://developer.android.com)
|
|
22
27
|
|
|
28
|
+
### ๐ One-Click Install
|
|
29
|
+
|
|
30
|
+
[](https://claude.ai/integrations/install-mcp?params=eyJuYW1lIjoiYW5kcm9qYWNrIiwiY29tbWFuZCI6Im5weCIsImFyZ3MiOlsiLXkiLCJhbmRyb2phY2stbWNwIl19)
|
|
31
|
+
[](https://cursor.com/install-mcp?name=androjack&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImFuZHJvamFjay1tY3AiXX0=)
|
|
32
|
+
[](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)
|
|
33
|
+
[](https://www.npmjs.com/package/androjack-mcp)
|
|
34
|
+
|
|
23
35
|
<br/>
|
|
24
36
|
|
|
25
|
-
**
|
|
37
|
+
**Also works with:** Windsurf ยท VS Code Copilot ยท Google Antigravity ยท JetBrains AI โ see [Manual Config](#-manual-config--copy--paste) below โ
|
|
26
38
|
|
|
27
39
|
<br/>
|
|
28
40
|
|
|
@@ -122,7 +134,7 @@ This is the most important thing to understand before you install AndroJack:
|
|
|
122
134
|
|
|
123
135
|
## ๐ฏ The Killer Argument
|
|
124
136
|
|
|
125
|
-
<img src="assets/killer_argument.png" alt="The Killer Argument โ AndroJack MCP" width="100%" />
|
|
137
|
+
<img src="https://raw.githubusercontent.com/VIKAS9793/AndroJack-mcp/main/assets/killer_argument.png" alt="The Killer Argument โ AndroJack MCP" width="100%" />
|
|
126
138
|
|
|
127
139
|
<br/>
|
|
128
140
|
|
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.2",
|
|
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.2",
|
|
42
42
|
});
|
|
43
43
|
// โโ Tool 1: Official Android Documentation Search โโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
44
44
|
server.registerTool("android_official_search", {
|
|
@@ -224,7 +224,6 @@ server.registerPrompt("androjack_grounding_gate", {
|
|
|
224
224
|
title: "AndroJack Grounding Gate Policy",
|
|
225
225
|
description: "System-level prompt enforcing the documentation-first policy. " +
|
|
226
226
|
"Add this to your AI client system prompt to activate the grounding gate.",
|
|
227
|
-
argsSchema: {},
|
|
228
227
|
}, () => ({
|
|
229
228
|
messages: [
|
|
230
229
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "androjack-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
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.2",
|
|
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.2",
|
|
45
45
|
});
|
|
46
46
|
|
|
47
47
|
// โโ Tool 1: Official Android Documentation Search โโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
@@ -296,7 +296,6 @@ server.registerPrompt(
|
|
|
296
296
|
description:
|
|
297
297
|
"System-level prompt enforcing the documentation-first policy. " +
|
|
298
298
|
"Add this to your AI client system prompt to activate the grounding gate.",
|
|
299
|
-
argsSchema: {},
|
|
300
299
|
},
|
|
301
300
|
() => ({
|
|
302
301
|
messages: [
|