File size: 1,021 Bytes
6a7089a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "id": "pinchtab",
  "name": "Pinchtab",
  "description": "Browser control for AI agents via Pinchtab. Single tool, all actions: navigate, snapshot, click, type, text, screenshot, evaluate, pdf. Minimal context bloat.",
  "version": "0.1.0",
  "skills": ["../skill/pinchtab"],
  "configSchema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "baseUrl": {
        "type": "string",
        "description": "Pinchtab instance base URL",
        "default": "http://localhost:9867"
      },
      "token": {
        "type": "string",
        "description": "Bearer auth token (PINCHTAB_TOKEN)"
      },
      "timeout": {
        "type": "number",
        "description": "Default request timeout in milliseconds",
        "default": 30000
      }
    }
  },
  "uiHints": {
    "baseUrl": { "label": "Base URL", "placeholder": "http://localhost:9867" },
    "token": { "label": "Auth Token", "sensitive": true },
    "timeout": { "label": "Timeout (ms)", "placeholder": "30000" }
  }
}