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 CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  # ๐Ÿค– AndroJack โ€” The Jack of All Android Trades
8
8
 
9
- ![AndroJack Banner](assets/AndroJack%20banner.png)
9
+ ![AndroJack Banner](https://raw.githubusercontent.com/VIKAS9793/AndroJack-mcp/main/assets/AndroJack%20banner.png)
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: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](LICENSE)
21
21
  [![Android API](https://img.shields.io/badge/Android-API%2021--36-34A853?style=flat-square&logo=android)](https://developer.android.com)
22
22
 
23
+ ### ๐Ÿš€ One-Click Install
24
+
25
+ [![Install in Claude Desktop](https://img.shields.io/badge/Install%20in-Claude%20Desktop-D97706?style=for-the-badge&logo=anthropic&logoColor=white)](https://claude.ai/integrations/install-mcp?params=eyJuYW1lIjoiYW5kcm9qYWNrIiwiY29tbWFuZCI6Im5weCIsImFyZ3MiOlsiLXkiLCJhbmRyb2phY2stbWNwIl19)
26
+ [![Install in Cursor](https://img.shields.io/badge/Install%20in-Cursor-000000?style=for-the-badge&logo=cursor&logoColor=white)](https://cursor.com/install-mcp?name=androjack&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImFuZHJvamFjay1tY3AiXX0=)
27
+ [![Add to Kiro](https://img.shields.io/badge/Add%20to-AWS%20Kiro-FF9900?style=for-the-badge&logo=amazonaws&logoColor=white)](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
+ [![View on npm](https://img.shields.io/badge/View%20on-npm-CB3837?style=for-the-badge&logo=npm&logoColor=white)](https://www.npmjs.com/package/androjack-mcp)
29
+
23
30
  <br/>
24
31
 
25
- **Connects to:** Claude Desktop ยท Cursor ยท Windsurf ยท VS Code Copilot ยท AWS Kiro ยท Google Antigravity IDE ยท JetBrains AI
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
 
@@ -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.0.0",
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.0",
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.0",
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": "./build/index.js",
26
- "androjack": "./build/install.js"
25
+ "androjack-mcp": "build/index.js",
26
+ "androjack": "build/install.js"
27
27
  },
28
28
  "scripts": {
29
29
  "build": "tsc",
@@ -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.0.0",
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.0",
44
+ version: "1.3.1",
45
45
  });
46
46
 
47
47
  // โ”€โ”€ Tool 1: Official Android Documentation Search โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€