@nbakka/mcp-appium 2.0.48 → 2.0.50
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/lib/server.js +2 -3
- package/package.json +1 -1
package/lib/server.js
CHANGED
|
@@ -16,7 +16,6 @@ const image_utils_1 = require("./image-utils");
|
|
|
16
16
|
const { google } = require('googleapis');
|
|
17
17
|
const axios = require('axios');
|
|
18
18
|
import OpenAI from "openai";
|
|
19
|
-
import { tool } from "ai";
|
|
20
19
|
const getAgentVersion = () => {
|
|
21
20
|
const json = require("../package.json");
|
|
22
21
|
return json.version;
|
|
@@ -496,7 +495,7 @@ function extractFileIdFromUrl(url) {
|
|
|
496
495
|
// ----------------------
|
|
497
496
|
// TOOL 1: Export Figma to PDF
|
|
498
497
|
// ----------------------
|
|
499
|
-
|
|
498
|
+
tool(
|
|
500
499
|
"mobile_export_figma_pdf",
|
|
501
500
|
"Export Figma file as PDF",
|
|
502
501
|
{
|
|
@@ -562,7 +561,7 @@ export const mobile_export_figma_pdf = tool(
|
|
|
562
561
|
// ----------------------
|
|
563
562
|
// TOOL 2: Upload PDF to OpenAI with Jira Info
|
|
564
563
|
// ----------------------
|
|
565
|
-
|
|
564
|
+
tool(
|
|
566
565
|
"upload_pdf_to_openai",
|
|
567
566
|
"Upload a PDF to OpenAI API along with Jira summary & description",
|
|
568
567
|
{
|