-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.apify-mcp-npx.json
More file actions
73 lines (73 loc) · 1.91 KB
/
Copy pathcom.apify-mcp-npx.json
File metadata and controls
73 lines (73 loc) · 1.91 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
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.apify-mcp-npx",
"name": "Apify (npx)",
"alias": "apify",
"description": "Run web scraping actors and access datasets on the Apify platform. Search the Apify Store, execute actors, and retrieve structured data.",
"icon": "https://avatars.githubusercontent.com/u/24586296?v=4",
"schema_version": "2.1",
"categories": [
"search",
"developer-tools"
],
"tags": [
"apify",
"web-scraping",
"actors",
"crawling",
"datasets",
"automation"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@apify/actors-mcp-server"
],
"env": {
"APIFY_TOKEN": "${input:APIFY_TOKEN}"
},
"metadata": {
"inputs": [
{
"id": "APIFY_TOKEN",
"label": "Apify API Token",
"description": "API token for the Apify platform.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "apify_api_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://console.apify.com/settings/integrations",
"instructions": "1. Go to console.apify.com > Settings > Integrations\n2. Find your Personal API token\n3. Copy the token",
"button_label": "Get API Token"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Get your API token at https://console.apify.com/settings/integrations"
},
"contributor": {
"name": "Apify",
"github": "apify",
"url": "https://apify.com"
},
"links": {
"repository": "https://github.com/apify/apify-mcp-server",
"homepage": "https://apify.com",
"documentation": "https://docs.apify.com/platform/integrations/mcp"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}