Skip to content

Commit f9a23e1

Browse files
vystrcildDusan VystrcilMQ37Apify Release Botjirispilka
authored
feat: add server.json for official MCP registry (#276)
* Added server.json for official MCP registry * add also remote server * chore(release): Update changelog, package.json and manifest.json versions [skip ci] * fix release cicd * fix ci * temp cicd test * Update server.json Co-authored-by: Jiří Spilka <[email protected]> * revert release.yml * update server.json --------- Co-authored-by: Dusan Vystrcil <[email protected]> Co-authored-by: MQ <[email protected]> Co-authored-by: Apify Release Bot <[email protected]> Co-authored-by: Jiří Spilka <[email protected]>
1 parent 9969960 commit f9a23e1

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,9 @@ storage/key_value_stores/default/*
2222
# Aider coding agent files
2323
.aider*
2424

25+
26+
# MCP registry private key
27+
key.pem
28+
2529
# Ignore MCP config for Opencode client
2630
opencode.json

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ All notable changes to this project will be documented in this file.
4747

4848
- Duplicate skyfire description when listing tools multiple times ([#277](https://github.com/apify/apify-mcp-server/pull/277)) ([aecc147](https://github.com/apify/apify-mcp-server/commit/aecc147e31a01d4fbab90930fd1c5682f96274b6)) by [@MQ37](https://github.com/MQ37)
4949

50-
5150
## [0.4.10](https://github.com/apify/apify-mcp-server/releases/tag/v0.4.10) (2025-09-15)
5251

5352
### 🚀 Features

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "0.4.17",
44
"type": "module",
55
"description": "Apify MCP Server",
6+
"mcpName": "com.apify/apify-mcp-server",
67
"engines": {
78
"node": ">=18.0.0"
89
},

server.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3+
"name": "com.apify/apify-mcp-server",
4+
"description": "Extract data from any website using thousands of web automation tools from the Apify Store.",
5+
"status": "active",
6+
"repository": {
7+
"url": "https://github.com/apify/apify-mcp-server",
8+
"source": "github"
9+
},
10+
"version": "0.4.17",
11+
"remotes": [
12+
{
13+
"type": "streamable-http",
14+
"url": "https://mcp.apify.com/",
15+
"headers": [
16+
{
17+
"name": "Authorization",
18+
"description": "Apify API token for authentication with Apify platform services. For example 'Bearer <apify-api-token>'",
19+
"is_required": true,
20+
"is_secret": true
21+
}
22+
]
23+
}
24+
]
25+
}

0 commit comments

Comments
 (0)