@nbakka/mcp-appium 2.0.62 → 2.0.64
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 -1
- package/package.json +1 -1
package/lib/server.js
CHANGED
|
@@ -30,6 +30,7 @@ const createMcpServer = () => {
|
|
|
30
30
|
resources: {},
|
|
31
31
|
tools: {},
|
|
32
32
|
},
|
|
33
|
+
timeout: 300000,
|
|
33
34
|
});
|
|
34
35
|
|
|
35
36
|
const tool = (name, description, paramsSchema, cb) => {
|
|
@@ -635,7 +636,7 @@ tool(
|
|
|
635
636
|
file: { file_id: file.id }
|
|
636
637
|
}, {
|
|
637
638
|
type: "text",
|
|
638
|
-
text: `For the attached pdf, OCR the page return a JSON with text, bounding boxes`
|
|
639
|
+
text: `For the attached pdf, OCR the page return a JSON with text, bounding boxes. Line-level boxes, Normalized [0–1] coordinates, origin top-left, Include readingOrder and no confidence, Keep all occurrences as they appear NOTE: Dont ask anymore questions, just give me output. I wont be able to answer`
|
|
639
640
|
}]
|
|
640
641
|
}]
|
|
641
642
|
});
|