Skip to content

Commit be218f2

Browse files
claudeits-mash
authored andcommitted
Add Apify MCP server definitions (local + remote)
Official Apify MCP server for web scraping. Local version uses @apify/actors-mcp-server via npx, remote version at https://mcp.apify.com/. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit be218f2

2 files changed

Lines changed: 109 additions & 0 deletions

File tree

servers/com.apify-mcp-http.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.apify-mcp-http",
4+
"name": "Apify (Remote)",
5+
"alias": "apify-remote",
6+
"description": "Run web scraping actors and access datasets on the Apify platform through the hosted remote MCP server. No local installation required.",
7+
"icon": "https://avatars.githubusercontent.com/u/24586296?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["search", "developer-tools"],
10+
"tags": ["apify", "web-scraping", "actors", "crawling", "datasets", "automation", "remote"],
11+
12+
"transport": {
13+
"type": "http",
14+
"url": "https://mcp.apify.com/",
15+
"metadata": {
16+
"inputs": []
17+
}
18+
},
19+
20+
"auth": {
21+
"type": "oauth",
22+
"instructions": "Connects via OAuth. Your MCP host will initiate the Apify OAuth flow. Alternatively, pass a Bearer token via the Authorization header."
23+
},
24+
25+
"contributor": {
26+
"name": "Apify",
27+
"github": "apify",
28+
"url": "https://apify.com"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/apify/apify-mcp-server",
33+
"homepage": "https://apify.com",
34+
"documentation": "https://docs.apify.com/platform/integrations/mcp"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": false
44+
}
45+
}

servers/com.apify-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.apify-mcp",
4+
"name": "Apify",
5+
"alias": "apify",
6+
"description": "Run web scraping actors and access datasets on the Apify platform. Search the Apify Store, execute actors, and retrieve structured data.",
7+
"icon": "https://avatars.githubusercontent.com/u/24586296?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["search", "developer-tools"],
10+
"tags": ["apify", "web-scraping", "actors", "crawling", "datasets", "automation"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@apify/actors-mcp-server"],
16+
"env": {
17+
"APIFY_TOKEN": "${input:APIFY_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "APIFY_TOKEN",
23+
"label": "Apify API Token",
24+
"description": "API token for the Apify platform.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "apify_api_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://console.apify.com/settings/integrations",
31+
"instructions": "1. Go to console.apify.com > Settings > Integrations\n2. Find your Personal API token\n3. Copy the token",
32+
"button_label": "Get API Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Get your API token at https://console.apify.com/settings/integrations"
42+
},
43+
44+
"contributor": {
45+
"name": "Apify",
46+
"github": "apify",
47+
"url": "https://apify.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/apify/apify-mcp-server",
52+
"homepage": "https://apify.com",
53+
"documentation": "https://docs.apify.com/platform/integrations/mcp"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)