-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.hyperbrowser-mcp-npx.json
More file actions
74 lines (74 loc) · 2.24 KB
/
Copy pathcom.hyperbrowser-mcp-npx.json
File metadata and controls
74 lines (74 loc) · 2.24 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.hyperbrowser-mcp-npx",
"name": "Hyperbrowser (npx)",
"alias": "hyperbrowser",
"description": "Cloud browser automation for AI agents: scrape pages, crawl sites, extract structured data, run web search, and drive headless browsers via Browser Use, OpenAI CUA, and Claude Computer Use agents.",
"logo": "https://avatars.githubusercontent.com/u/189776885?v=4",
"schema_version": "2.1",
"categories": [
"search",
"developer-tools"
],
"tags": [
"hyperbrowser",
"browser-automation",
"web-scraping",
"crawling",
"web-search",
"data-extraction"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"hyperbrowser-mcp"
],
"env": {
"HYPERBROWSER_API_KEY": "${input:HYPERBROWSER_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "HYPERBROWSER_API_KEY",
"label": "Hyperbrowser API Key",
"description": "API key used to authenticate with the Hyperbrowser cloud service for browser automation, scraping, crawling, and web search.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "hb_********************************",
"obtain": {
"url": "https://app.hyperbrowser.ai/",
"instructions": "1. Sign in to the Hyperbrowser Dashboard\n2. Open the API Keys section\n3. Create a new API key\n4. Copy the generated key",
"button_label": "Get API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create an API key in the Hyperbrowser Dashboard at https://app.hyperbrowser.ai/ and set it as HYPERBROWSER_API_KEY."
},
"contributor": {
"name": "Hyperbrowser",
"github": "hyperbrowserai",
"url": "https://hyperbrowser.ai"
},
"links": {
"repository": "https://github.com/hyperbrowserai/mcp",
"homepage": "https://hyperbrowser.ai",
"documentation": "https://docs.hyperbrowser.ai"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": true,
"prompts": false,
"read_only_mode": false
},
"changelog_url": "https://github.com/hyperbrowserai/mcp/releases"
}