Skip to content

Commit 2588bc6

Browse files
authored
feat: add Apify (Remote) + Apify MCP server definition (#24)
* 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 * fix: update server definition (input type 'password' -> 'text' for APIFY_TOKEN) * fix: rename server files with transport suffix - com.apify-mcp.json -> com.apify-mcp-npx.json (id: com.apify-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent b04628d commit 2588bc6

2 files changed

Lines changed: 118 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-npx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.apify-mcp-npx",
4+
"name": "Apify (npx)",
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": [
10+
"search",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"apify",
15+
"web-scraping",
16+
"actors",
17+
"crawling",
18+
"datasets",
19+
"automation"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@apify/actors-mcp-server"
27+
],
28+
"env": {
29+
"APIFY_TOKEN": "${input:APIFY_TOKEN}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "APIFY_TOKEN",
35+
"label": "Apify API Token",
36+
"description": "API token for the Apify platform.",
37+
"type": "text",
38+
"required": true,
39+
"secret": true,
40+
"placeholder": "apify_api_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
41+
"obtain": {
42+
"url": "https://console.apify.com/settings/integrations",
43+
"instructions": "1. Go to console.apify.com > Settings > Integrations\n2. Find your Personal API token\n3. Copy the token",
44+
"button_label": "Get API Token"
45+
}
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "api_key",
52+
"instructions": "Get your API token at https://console.apify.com/settings/integrations"
53+
},
54+
"contributor": {
55+
"name": "Apify",
56+
"github": "apify",
57+
"url": "https://apify.com"
58+
},
59+
"links": {
60+
"repository": "https://github.com/apify/apify-mcp-server",
61+
"homepage": "https://apify.com",
62+
"documentation": "https://docs.apify.com/platform/integrations/mcp"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": false
72+
}
73+
}

0 commit comments

Comments
 (0)