replicant-mcp 1.6.1 → 1.6.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 CHANGED
@@ -3,8 +3,11 @@
3
3
  **Let AI build, test, and debug your Android apps.**
4
4
 
5
5
  [![CI](https://github.com/thecombatwombat/replicant-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/thecombatwombat/replicant-mcp/actions/workflows/ci.yml)
6
+ [![npm](https://img.shields.io/npm/v/replicant-mcp)](https://www.npmjs.com/package/replicant-mcp)
6
7
  [![Node.js](https://img.shields.io/badge/Node.js-18%2B-green)](https://nodejs.org/)
7
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
9
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/thecombatwombat/replicant-mcp)
10
+ [![replicant-mcp MCP server](https://glama.ai/mcp/servers/thecombatwombat/replicant-mcp/badges/card.svg)](https://glama.ai/mcp/servers/thecombatwombat/replicant-mcp)
8
11
 
9
12
  replicant-mcp is a [Model Context Protocol](https://modelcontextprotocol.io/) server that gives AI assistants like Claude the ability to interact with your Android development environment. Build APKs, launch emulators, install apps, navigate UIs, and debug crashes—all through natural conversation.
10
13
 
@@ -49,4 +49,10 @@ export declare const adbAppToolDefinition: {
49
49
  };
50
50
  required: string[];
51
51
  };
52
+ annotations: {
53
+ readOnlyHint: boolean;
54
+ destructiveHint: boolean;
55
+ idempotentHint: boolean;
56
+ openWorldHint: boolean;
57
+ };
52
58
  };
@@ -109,4 +109,10 @@ export const adbAppToolDefinition = {
109
109
  },
110
110
  required: ["operation"],
111
111
  },
112
+ annotations: {
113
+ readOnlyHint: false,
114
+ destructiveHint: true,
115
+ idempotentHint: false,
116
+ openWorldHint: false,
117
+ },
112
118
  };
@@ -28,4 +28,10 @@ export declare const adbDeviceToolDefinition: {
28
28
  };
29
29
  required: string[];
30
30
  };
31
+ annotations: {
32
+ readOnlyHint: boolean;
33
+ destructiveHint: boolean;
34
+ idempotentHint: boolean;
35
+ openWorldHint: boolean;
36
+ };
31
37
  };
@@ -122,4 +122,10 @@ export const adbDeviceToolDefinition = {
122
122
  },
123
123
  required: ["operation"],
124
124
  },
125
+ annotations: {
126
+ readOnlyHint: false,
127
+ destructiveHint: false,
128
+ idempotentHint: false,
129
+ openWorldHint: false,
130
+ },
125
131
  };
@@ -48,4 +48,10 @@ export declare const adbLogcatToolDefinition: {
48
48
  };
49
49
  };
50
50
  };
51
+ annotations: {
52
+ readOnlyHint: boolean;
53
+ destructiveHint: boolean;
54
+ idempotentHint: boolean;
55
+ openWorldHint: boolean;
56
+ };
51
57
  };
@@ -66,4 +66,10 @@ export const adbLogcatToolDefinition = {
66
66
  since: { type: "string", description: "e.g., '01-20 15:30:00.000'" },
67
67
  },
68
68
  },
69
+ annotations: {
70
+ readOnlyHint: true,
71
+ destructiveHint: false,
72
+ idempotentHint: true,
73
+ openWorldHint: false,
74
+ },
69
75
  };
@@ -37,4 +37,10 @@ export declare const adbShellToolDefinition: {
37
37
  };
38
38
  required: string[];
39
39
  };
40
+ annotations: {
41
+ readOnlyHint: boolean;
42
+ destructiveHint: boolean;
43
+ idempotentHint: boolean;
44
+ openWorldHint: boolean;
45
+ };
40
46
  };
@@ -55,4 +55,10 @@ export const adbShellToolDefinition = {
55
55
  },
56
56
  required: ["command"],
57
57
  },
58
+ annotations: {
59
+ readOnlyHint: false,
60
+ destructiveHint: true,
61
+ idempotentHint: false,
62
+ openWorldHint: true,
63
+ },
58
64
  };
@@ -47,4 +47,10 @@ export declare const cacheToolDefinition: {
47
47
  };
48
48
  required: string[];
49
49
  };
50
+ annotations: {
51
+ readOnlyHint: boolean;
52
+ destructiveHint: boolean;
53
+ idempotentHint: boolean;
54
+ openWorldHint: boolean;
55
+ };
50
56
  };
@@ -55,4 +55,10 @@ export const cacheToolDefinition = {
55
55
  },
56
56
  required: ["operation"],
57
57
  },
58
+ annotations: {
59
+ readOnlyHint: false,
60
+ destructiveHint: true,
61
+ idempotentHint: false,
62
+ openWorldHint: false,
63
+ },
58
64
  };
@@ -49,4 +49,10 @@ export declare const emulatorDeviceToolDefinition: {
49
49
  };
50
50
  required: string[];
51
51
  };
52
+ annotations: {
53
+ readOnlyHint: boolean;
54
+ destructiveHint: boolean;
55
+ idempotentHint: boolean;
56
+ openWorldHint: boolean;
57
+ };
52
58
  };
@@ -141,4 +141,10 @@ export const emulatorDeviceToolDefinition = {
141
141
  },
142
142
  required: ["operation"],
143
143
  },
144
+ annotations: {
145
+ readOnlyHint: false,
146
+ destructiveHint: true,
147
+ idempotentHint: false,
148
+ openWorldHint: false,
149
+ },
144
150
  };
@@ -31,4 +31,10 @@ export declare const gradleBuildToolDefinition: {
31
31
  };
32
32
  required: string[];
33
33
  };
34
+ annotations: {
35
+ readOnlyHint: boolean;
36
+ destructiveHint: boolean;
37
+ idempotentHint: boolean;
38
+ openWorldHint: boolean;
39
+ };
34
40
  };
@@ -36,4 +36,10 @@ export const gradleBuildToolDefinition = {
36
36
  },
37
37
  required: ["operation"],
38
38
  },
39
+ annotations: {
40
+ readOnlyHint: false,
41
+ destructiveHint: false,
42
+ idempotentHint: false,
43
+ openWorldHint: false,
44
+ },
39
45
  };
@@ -42,4 +42,10 @@ export declare const gradleGetDetailsToolDefinition: {
42
42
  };
43
43
  required: string[];
44
44
  };
45
+ annotations: {
46
+ readOnlyHint: boolean;
47
+ destructiveHint: boolean;
48
+ idempotentHint: boolean;
49
+ openWorldHint: boolean;
50
+ };
45
51
  };
@@ -159,4 +159,10 @@ export const gradleGetDetailsToolDefinition = {
159
159
  },
160
160
  required: ["id"],
161
161
  },
162
+ annotations: {
163
+ readOnlyHint: true,
164
+ destructiveHint: false,
165
+ idempotentHint: true,
166
+ openWorldHint: false,
167
+ },
162
168
  };
@@ -27,4 +27,10 @@ export declare const gradleListToolDefinition: {
27
27
  };
28
28
  required: string[];
29
29
  };
30
+ annotations: {
31
+ readOnlyHint: boolean;
32
+ destructiveHint: boolean;
33
+ idempotentHint: boolean;
34
+ openWorldHint: boolean;
35
+ };
30
36
  };
@@ -50,4 +50,10 @@ export const gradleListToolDefinition = {
50
50
  },
51
51
  required: ["operation"],
52
52
  },
53
+ annotations: {
54
+ readOnlyHint: true,
55
+ destructiveHint: false,
56
+ idempotentHint: true,
57
+ openWorldHint: false,
58
+ },
53
59
  };
@@ -44,4 +44,10 @@ export declare const gradleTestToolDefinition: {
44
44
  };
45
45
  required: string[];
46
46
  };
47
+ annotations: {
48
+ readOnlyHint: boolean;
49
+ destructiveHint: boolean;
50
+ idempotentHint: boolean;
51
+ openWorldHint: boolean;
52
+ };
47
53
  };
@@ -98,4 +98,10 @@ export const gradleTestToolDefinition = {
98
98
  },
99
99
  required: ["operation"],
100
100
  },
101
+ annotations: {
102
+ readOnlyHint: false,
103
+ destructiveHint: true,
104
+ idempotentHint: false,
105
+ openWorldHint: false,
106
+ },
101
107
  };
@@ -23,4 +23,10 @@ export declare const rtfmToolDefinition: {
23
23
  };
24
24
  };
25
25
  };
26
+ annotations: {
27
+ readOnlyHint: boolean;
28
+ destructiveHint: boolean;
29
+ idempotentHint: boolean;
30
+ openWorldHint: boolean;
31
+ };
26
32
  };
@@ -63,4 +63,10 @@ export const rtfmToolDefinition = {
63
63
  tool: { type: "string", description: "Tool name for specific docs" },
64
64
  },
65
65
  },
66
+ annotations: {
67
+ readOnlyHint: true,
68
+ destructiveHint: false,
69
+ idempotentHint: true,
70
+ openWorldHint: false,
71
+ },
66
72
  };
@@ -60,4 +60,10 @@ export declare const uiActionToolDefinition: {
60
60
  };
61
61
  required: string[];
62
62
  };
63
+ annotations: {
64
+ readOnlyHint: boolean;
65
+ destructiveHint: boolean;
66
+ idempotentHint: boolean;
67
+ openWorldHint: boolean;
68
+ };
63
69
  };
@@ -80,4 +80,10 @@ export const uiActionToolDefinition = {
80
80
  },
81
81
  required: ["operation"],
82
82
  },
83
+ annotations: {
84
+ readOnlyHint: false,
85
+ destructiveHint: true,
86
+ idempotentHint: false,
87
+ openWorldHint: false,
88
+ },
83
89
  };
@@ -40,4 +40,10 @@ export declare const uiCaptureToolDefinition: {
40
40
  };
41
41
  required: string[];
42
42
  };
43
+ annotations: {
44
+ readOnlyHint: boolean;
45
+ destructiveHint: boolean;
46
+ idempotentHint: boolean;
47
+ openWorldHint: boolean;
48
+ };
43
49
  };
@@ -56,4 +56,10 @@ export const uiCaptureToolDefinition = {
56
56
  },
57
57
  required: ["operation"],
58
58
  },
59
+ annotations: {
60
+ readOnlyHint: false,
61
+ destructiveHint: false,
62
+ idempotentHint: false,
63
+ openWorldHint: false,
64
+ },
59
65
  };
@@ -91,4 +91,10 @@ export declare const uiQueryToolDefinition: {
91
91
  };
92
92
  required: string[];
93
93
  };
94
+ annotations: {
95
+ readOnlyHint: boolean;
96
+ destructiveHint: boolean;
97
+ idempotentHint: boolean;
98
+ openWorldHint: boolean;
99
+ };
94
100
  };
@@ -135,4 +135,10 @@ export const uiQueryToolDefinition = {
135
135
  },
136
136
  required: ["operation"],
137
137
  },
138
+ annotations: {
139
+ readOnlyHint: true,
140
+ destructiveHint: false,
141
+ idempotentHint: true,
142
+ openWorldHint: false,
143
+ },
138
144
  };
package/icon.png ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicant-mcp",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Android MCP server for AI-assisted Android development",
5
5
  "mcpName": "io.github.thecombatwombat/replicant-mcp",
6
6
  "type": "module",
@@ -53,7 +53,8 @@
53
53
  "docs/rtfm/",
54
54
  "docs/contracts/",
55
55
  "README.md",
56
- "LICENSE"
56
+ "LICENSE",
57
+ "icon.png"
57
58
  ],
58
59
  "engines": {
59
60
  "node": ">=18.0.0"