sensor-tower-mcp-pro 1.2.10

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.
Files changed (47) hide show
  1. package/README.md +136 -0
  2. package/bin/sensortower-mcp.js +2 -0
  3. package/dist/client.d.ts +17 -0
  4. package/dist/client.d.ts.map +1 -0
  5. package/dist/client.js +100 -0
  6. package/dist/client.js.map +1 -0
  7. package/dist/config.d.ts +12 -0
  8. package/dist/config.d.ts.map +1 -0
  9. package/dist/config.js +142 -0
  10. package/dist/config.js.map +1 -0
  11. package/dist/index.d.ts +6 -0
  12. package/dist/index.d.ts.map +1 -0
  13. package/dist/index.js +88 -0
  14. package/dist/index.js.map +1 -0
  15. package/dist/tools/app-analysis.d.ts +580 -0
  16. package/dist/tools/app-analysis.d.ts.map +1 -0
  17. package/dist/tools/app-analysis.js +451 -0
  18. package/dist/tools/app-analysis.js.map +1 -0
  19. package/dist/tools/index.d.ts +10 -0
  20. package/dist/tools/index.d.ts.map +1 -0
  21. package/dist/tools/index.js +19 -0
  22. package/dist/tools/index.js.map +1 -0
  23. package/dist/tools/market-analysis.d.ts +391 -0
  24. package/dist/tools/market-analysis.d.ts.map +1 -0
  25. package/dist/tools/market-analysis.js +298 -0
  26. package/dist/tools/market-analysis.js.map +1 -0
  27. package/dist/tools/search.d.ts +162 -0
  28. package/dist/tools/search.d.ts.map +1 -0
  29. package/dist/tools/search.js +126 -0
  30. package/dist/tools/search.js.map +1 -0
  31. package/dist/tools/store-marketing.d.ts +200 -0
  32. package/dist/tools/store-marketing.d.ts.map +1 -0
  33. package/dist/tools/store-marketing.js +170 -0
  34. package/dist/tools/store-marketing.js.map +1 -0
  35. package/dist/tools/utilities.d.ts +76 -0
  36. package/dist/tools/utilities.d.ts.map +1 -0
  37. package/dist/tools/utilities.js +140 -0
  38. package/dist/tools/utilities.js.map +1 -0
  39. package/dist/tools/your-metrics.d.ts +140 -0
  40. package/dist/tools/your-metrics.d.ts.map +1 -0
  41. package/dist/tools/your-metrics.js +121 -0
  42. package/dist/tools/your-metrics.js.map +1 -0
  43. package/dist/utils.d.ts +7 -0
  44. package/dist/utils.d.ts.map +1 -0
  45. package/dist/utils.js +64 -0
  46. package/dist/utils.js.map +1 -0
  47. package/package.json +54 -0
@@ -0,0 +1,580 @@
1
+ /**
2
+ * App Analysis tools for Sensor Tower MCP
3
+ */
4
+ import { SensorTowerClient } from '../client';
5
+ export declare function registerAppAnalysisTools(client: SensorTowerClient): {
6
+ get_app_metadata: {
7
+ description: string;
8
+ inputSchema: {
9
+ type: string;
10
+ properties: {
11
+ os: {
12
+ type: string;
13
+ enum: string[];
14
+ description: string;
15
+ };
16
+ app_ids: {
17
+ type: string;
18
+ description: string;
19
+ };
20
+ country: {
21
+ type: string;
22
+ description: string;
23
+ default: string;
24
+ };
25
+ include_sdk_data: {
26
+ type: string;
27
+ description: string;
28
+ default: boolean;
29
+ };
30
+ };
31
+ required: string[];
32
+ };
33
+ handler: (args: any) => Promise<unknown>;
34
+ };
35
+ get_download_estimates: {
36
+ description: string;
37
+ inputSchema: {
38
+ type: string;
39
+ properties: {
40
+ os: {
41
+ type: string;
42
+ enum: string[];
43
+ description: string;
44
+ };
45
+ app_ids: {
46
+ type: string;
47
+ description: string;
48
+ };
49
+ start_date: {
50
+ type: string;
51
+ description: string;
52
+ };
53
+ end_date: {
54
+ type: string;
55
+ description: string;
56
+ };
57
+ countries: {
58
+ type: string;
59
+ description: string;
60
+ };
61
+ date_granularity: {
62
+ type: string;
63
+ enum: string[];
64
+ default: string;
65
+ };
66
+ data_model: {
67
+ type: string;
68
+ enum: string[];
69
+ default: string;
70
+ };
71
+ };
72
+ required: string[];
73
+ };
74
+ handler: (args: any) => Promise<unknown>;
75
+ };
76
+ get_revenue_estimates: {
77
+ description: string;
78
+ inputSchema: {
79
+ type: string;
80
+ properties: {
81
+ os: {
82
+ type: string;
83
+ enum: string[];
84
+ description: string;
85
+ };
86
+ app_ids: {
87
+ type: string;
88
+ description: string;
89
+ };
90
+ start_date: {
91
+ type: string;
92
+ description: string;
93
+ };
94
+ end_date: {
95
+ type: string;
96
+ description: string;
97
+ };
98
+ countries: {
99
+ type: string;
100
+ description: string;
101
+ };
102
+ date_granularity: {
103
+ type: string;
104
+ enum: string[];
105
+ default: string;
106
+ };
107
+ data_model: {
108
+ type: string;
109
+ enum: string[];
110
+ default: string;
111
+ };
112
+ };
113
+ required: string[];
114
+ };
115
+ handler: (args: any) => Promise<unknown>;
116
+ };
117
+ get_creatives: {
118
+ description: string;
119
+ inputSchema: {
120
+ type: string;
121
+ properties: {
122
+ os: {
123
+ type: string;
124
+ enum: string[];
125
+ description: string;
126
+ };
127
+ app_ids: {
128
+ type: string;
129
+ description: string;
130
+ };
131
+ start_date: {
132
+ type: string;
133
+ description: string;
134
+ };
135
+ countries: {
136
+ type: string;
137
+ description: string;
138
+ };
139
+ networks: {
140
+ type: string;
141
+ description: string;
142
+ };
143
+ ad_types: {
144
+ type: string;
145
+ description: string;
146
+ };
147
+ end_date: {
148
+ type: string;
149
+ description: string;
150
+ };
151
+ };
152
+ required: string[];
153
+ };
154
+ handler: (args: any) => Promise<unknown>;
155
+ };
156
+ top_in_app_purchases: {
157
+ description: string;
158
+ inputSchema: {
159
+ type: string;
160
+ properties: {
161
+ os: {
162
+ type: string;
163
+ enum: string[];
164
+ description: string;
165
+ };
166
+ app_ids: {
167
+ type: string;
168
+ description: string;
169
+ };
170
+ country: {
171
+ type: string;
172
+ description: string;
173
+ default: string;
174
+ };
175
+ };
176
+ required: string[];
177
+ };
178
+ handler: (args: any) => Promise<unknown>;
179
+ };
180
+ get_usage_active_users: {
181
+ description: string;
182
+ inputSchema: {
183
+ type: string;
184
+ properties: {
185
+ os: {
186
+ type: string;
187
+ enum: string[];
188
+ description: string;
189
+ };
190
+ app_ids: {
191
+ type: string;
192
+ description: string;
193
+ };
194
+ start_date: {
195
+ type: string;
196
+ description: string;
197
+ };
198
+ end_date: {
199
+ type: string;
200
+ description: string;
201
+ };
202
+ countries: {
203
+ type: string;
204
+ description: string;
205
+ default: string;
206
+ };
207
+ date_granularity: {
208
+ type: string;
209
+ enum: string[];
210
+ default: string;
211
+ };
212
+ data_model: {
213
+ type: string;
214
+ enum: string[];
215
+ default: string;
216
+ };
217
+ };
218
+ required: string[];
219
+ };
220
+ handler: (args: any) => Promise<unknown>;
221
+ };
222
+ version_history: {
223
+ description: string;
224
+ inputSchema: {
225
+ type: string;
226
+ properties: {
227
+ os: {
228
+ type: string;
229
+ enum: string[];
230
+ description: string;
231
+ };
232
+ app_id: {
233
+ type: string;
234
+ description: string;
235
+ };
236
+ country: {
237
+ type: string;
238
+ description: string;
239
+ default: string;
240
+ };
241
+ };
242
+ required: string[];
243
+ };
244
+ handler: (args: any) => Promise<unknown>;
245
+ };
246
+ get_impressions: {
247
+ description: string;
248
+ inputSchema: {
249
+ type: string;
250
+ properties: {
251
+ os: {
252
+ type: string;
253
+ enum: string[];
254
+ description: string;
255
+ };
256
+ app_ids: {
257
+ type: string;
258
+ description: string;
259
+ };
260
+ start_date: {
261
+ type: string;
262
+ description: string;
263
+ };
264
+ end_date: {
265
+ type: string;
266
+ description: string;
267
+ };
268
+ countries: {
269
+ type: string;
270
+ description: string;
271
+ };
272
+ networks: {
273
+ type: string;
274
+ description: string;
275
+ };
276
+ date_granularity: {
277
+ type: string;
278
+ enum: string[];
279
+ default: string;
280
+ };
281
+ };
282
+ required: string[];
283
+ };
284
+ handler: (args: any) => Promise<unknown>;
285
+ };
286
+ get_category_history: {
287
+ description: string;
288
+ inputSchema: {
289
+ type: string;
290
+ properties: {
291
+ os: {
292
+ type: string;
293
+ enum: string[];
294
+ description: string;
295
+ };
296
+ app_ids: {
297
+ type: string;
298
+ description: string;
299
+ };
300
+ category: {
301
+ type: string;
302
+ description: string;
303
+ };
304
+ chart_type_ids: {
305
+ type: string;
306
+ description: string;
307
+ };
308
+ start_date: {
309
+ type: string;
310
+ description: string;
311
+ };
312
+ end_date: {
313
+ type: string;
314
+ description: string;
315
+ };
316
+ countries: {
317
+ type: string;
318
+ description: string;
319
+ default: string;
320
+ };
321
+ };
322
+ required: string[];
323
+ };
324
+ handler: (args: any) => Promise<unknown>;
325
+ };
326
+ compact_sales_report_estimates: {
327
+ description: string;
328
+ inputSchema: {
329
+ type: string;
330
+ properties: {
331
+ os: {
332
+ type: string;
333
+ enum: string[];
334
+ description: string;
335
+ };
336
+ start_date: {
337
+ type: string;
338
+ description: string;
339
+ };
340
+ end_date: {
341
+ type: string;
342
+ description: string;
343
+ };
344
+ app_ids: {
345
+ type: string;
346
+ description: string;
347
+ };
348
+ publisher_ids: {
349
+ type: string;
350
+ description: string;
351
+ };
352
+ unified_app_ids: {
353
+ type: string;
354
+ description: string;
355
+ };
356
+ unified_publisher_ids: {
357
+ type: string;
358
+ description: string;
359
+ };
360
+ categories: {
361
+ type: string;
362
+ description: string;
363
+ };
364
+ countries: {
365
+ type: string;
366
+ description: string;
367
+ default: string;
368
+ };
369
+ date_granularity: {
370
+ type: string;
371
+ enum: string[];
372
+ default: string;
373
+ };
374
+ data_model: {
375
+ type: string;
376
+ enum: string[];
377
+ default: string;
378
+ };
379
+ };
380
+ required: string[];
381
+ };
382
+ handler: (args: any) => Promise<unknown>;
383
+ };
384
+ category_ranking_summary: {
385
+ description: string;
386
+ inputSchema: {
387
+ type: string;
388
+ properties: {
389
+ os: {
390
+ type: string;
391
+ enum: string[];
392
+ description: string;
393
+ };
394
+ app_id: {
395
+ type: string;
396
+ description: string;
397
+ };
398
+ country: {
399
+ type: string;
400
+ description: string;
401
+ };
402
+ };
403
+ required: string[];
404
+ };
405
+ handler: (args: any) => Promise<unknown>;
406
+ };
407
+ impressions_rank: {
408
+ description: string;
409
+ inputSchema: {
410
+ type: string;
411
+ properties: {
412
+ os: {
413
+ type: string;
414
+ enum: string[];
415
+ description: string;
416
+ };
417
+ app_ids: {
418
+ type: string;
419
+ description: string;
420
+ };
421
+ start_date: {
422
+ type: string;
423
+ description: string;
424
+ };
425
+ end_date: {
426
+ type: string;
427
+ description: string;
428
+ };
429
+ countries: {
430
+ type: string;
431
+ description: string;
432
+ };
433
+ networks: {
434
+ type: string;
435
+ description: string;
436
+ };
437
+ };
438
+ required: string[];
439
+ };
440
+ handler: (args: any) => Promise<unknown>;
441
+ };
442
+ app_analysis_retention: {
443
+ description: string;
444
+ inputSchema: {
445
+ type: string;
446
+ properties: {
447
+ os: {
448
+ type: string;
449
+ enum: string[];
450
+ description: string;
451
+ };
452
+ app_ids: {
453
+ type: string;
454
+ description: string;
455
+ };
456
+ date_granularity: {
457
+ type: string;
458
+ enum: string[];
459
+ description: string;
460
+ };
461
+ start_date: {
462
+ type: string;
463
+ description: string;
464
+ };
465
+ end_date: {
466
+ type: string;
467
+ description: string;
468
+ };
469
+ country: {
470
+ type: string;
471
+ description: string;
472
+ };
473
+ };
474
+ required: string[];
475
+ };
476
+ handler: (args: any) => Promise<unknown>;
477
+ };
478
+ downloads_by_sources: {
479
+ description: string;
480
+ inputSchema: {
481
+ type: string;
482
+ properties: {
483
+ os: {
484
+ type: string;
485
+ enum: string[];
486
+ description: string;
487
+ };
488
+ app_ids: {
489
+ type: string;
490
+ description: string;
491
+ };
492
+ countries: {
493
+ type: string;
494
+ description: string;
495
+ };
496
+ start_date: {
497
+ type: string;
498
+ description: string;
499
+ };
500
+ end_date: {
501
+ type: string;
502
+ description: string;
503
+ };
504
+ date_granularity: {
505
+ type: string;
506
+ enum: string[];
507
+ default: string;
508
+ };
509
+ };
510
+ required: string[];
511
+ };
512
+ handler: (args: any) => Promise<unknown>;
513
+ };
514
+ app_analysis_demographics: {
515
+ description: string;
516
+ inputSchema: {
517
+ type: string;
518
+ properties: {
519
+ os: {
520
+ type: string;
521
+ enum: string[];
522
+ description: string;
523
+ };
524
+ app_ids: {
525
+ type: string;
526
+ description: string;
527
+ };
528
+ date_granularity: {
529
+ type: string;
530
+ enum: string[];
531
+ description: string;
532
+ };
533
+ start_date: {
534
+ type: string;
535
+ description: string;
536
+ };
537
+ end_date: {
538
+ type: string;
539
+ description: string;
540
+ };
541
+ country: {
542
+ type: string;
543
+ description: string;
544
+ };
545
+ };
546
+ required: string[];
547
+ };
548
+ handler: (args: any) => Promise<unknown>;
549
+ };
550
+ app_update_timeline: {
551
+ description: string;
552
+ inputSchema: {
553
+ type: string;
554
+ properties: {
555
+ os: {
556
+ type: string;
557
+ enum: string[];
558
+ description: string;
559
+ };
560
+ app_id: {
561
+ type: string;
562
+ description: string;
563
+ };
564
+ country: {
565
+ type: string;
566
+ description: string;
567
+ default: string;
568
+ };
569
+ date_limit: {
570
+ type: string;
571
+ description: string;
572
+ default: number;
573
+ };
574
+ };
575
+ required: string[];
576
+ };
577
+ handler: (args: any) => Promise<unknown>;
578
+ };
579
+ };
580
+ //# sourceMappingURL=app-analysis.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app-analysis.d.ts","sourceRoot":"","sources":["../../src/tools/app-analysis.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAG9C,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBActC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAyBH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA+BH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA+BH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;wBA2BH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAwBH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;wBA4BH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAwBH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA+BH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAkCH,GAAG;;;;;;;;;;;;;;;;;;;;;;;wBA+BH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAuBH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA8BH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA4BH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA4BH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA0BH,GAAG;;EAU9B"}