-
Notifications
You must be signed in to change notification settings - Fork 67
feat: add server.json for official MCP registry #276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
7bacdcb
a90dd20
c6f1de2
e374ad2
89b8f41
5395839
a3f81cb
2083760
e2cd33a
a5fc646
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,3 +19,6 @@ storage/key_value_stores/default/* | |
| .venv | ||
| .env | ||
| .aider* | ||
|
|
||
| # MCP registry private key | ||
| key.pem | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| { | ||
| "$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json", | ||
| "name": "com.apify/apify-mcp-server", | ||
| "description": "Apify MCP Server providing access to thousands of web scraping and automation tools from Apify Store", | ||
| "status": "active", | ||
| "repository": { | ||
| "url": "https://github.com/apify/apify-mcp-server", | ||
| "source": "github" | ||
| }, | ||
| "version": "0.4.10", | ||
|
||
| "remotes": [ | ||
| { | ||
| "type": "streamable-http", | ||
| "url": "https://mcp.apify.com/", | ||
| "headers": [ | ||
| { | ||
| "name": "Authorization", | ||
| "description": "Apify API token for authentication with Apify platform services. For example 'Bearer <apify-api-token>'", | ||
| "is_required": true, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should define OAuth and not require an Apify token
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point, but I dont know how to explicitly configure OAuth there - they only mention headers in the MD docs on how to contribute. |
||
| "is_secret": true | ||
| } | ||
| ] | ||
| } | ||
| ], | ||
| "packages": [ | ||
| { | ||
| "registry_type": "npm", | ||
| "registry_base_url": "https://registry.npmjs.org", | ||
| "identifier": "@apify/actors-mcp-server", | ||
| "version": "0.4.10", | ||
|
||
| "transport": { | ||
| "type": "stdio" | ||
| }, | ||
| "environment_variables": [ | ||
| { | ||
| "description": "Apify API token for authentication with Apify platform services", | ||
| "format": "string", | ||
| "is_required": true, | ||
| "is_secret": true, | ||
| "name": "APIFY_TOKEN" | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.