-
Notifications
You must be signed in to change notification settings - Fork 78
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
7bacdcb
Added server.json for official MCP registry
a90dd20
add also remote server
MQ37 c6f1de2
chore(release): Update changelog, package.json and manifest.json vers…
e374ad2
fix release cicd
MQ37 89b8f41
fix ci
MQ37 5395839
temp cicd test
MQ37 a3f81cb
Update server.json
MQ37 2083760
Merge branch 'master' into feature/github_registry
MQ37 e2cd33a
revert release.yml
MQ37 a5fc646
update server.json
MQ37 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -132,18 +132,20 @@ jobs: | |
| npm ci | ||
| - name: Build module | ||
| run: npm run build | ||
| - name: Prepare DXT package | ||
| - name: Prepare MCPB package | ||
| run: | | ||
| mkdir dxt | ||
| cp -r node_modules dxt/node_modules | ||
| cp -r dist dxt/dist | ||
| cp -r docs dxt/docs | ||
| cp package.json dxt/package.json | ||
| cp manifest.json dxt/manifest.json | ||
| - name: Create DXT package | ||
| run: npx -y @anthropic-ai/dxt pack dxt/ actors-mcp-server.dxt | ||
| - name: Copy DXT package | ||
| run: cp actors-mcp-server.dxt apify-mcp-server.dxt | ||
| mkdir mcpb | ||
| cp -r node_modules mcpb/node_modules | ||
| cp -r dist mcpb/dist | ||
| cp -r docs mcpb/docs | ||
| cp package.json mcpb/package.json | ||
| cp manifest.json mcpb/manifest.json | ||
| cp docs/apify-logo.png mcpb/icon.png | ||
| - name: Create MCPB package | ||
| # fix version of anthropic-ai/mcpb to 1.1.1 so that we have a reproducible build | ||
| run: npx -y @anthropic-ai/[email protected] pack mcpb/ apify-mcp-server.mcpb | ||
| - name: Copy MCPB package | ||
| run: cp apify-mcp-server.mcpb actors-mcp-server.mcpb | ||
| - name: Create release | ||
| uses: softprops/action-gh-release@v2 | ||
| with: | ||
|
|
@@ -152,8 +154,8 @@ jobs: | |
| target_commitish: ${{ needs.update_changelog.outputs.changelog_commitish }} | ||
| body: ${{ needs.release_metadata.outputs.release_notes }} | ||
| files: | | ||
| actors-mcp-server.dxt | ||
| apify-mcp-server.dxt | ||
| apify-mcp-server.mcpb | ||
| actors-mcp-server.mcpb | ||
|
|
||
| publish_to_npm: | ||
| name: Publish to NPM | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| { | ||
| "$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json", | ||
| "name": "com.apify/apify-mcp-server", | ||
| "description": "Extract data from any website using thousands of web automation tools from the Apify Store.", | ||
| "status": "active", | ||
| "repository": { | ||
| "url": "https://github.com/apify/apify-mcp-server", | ||
| "source": "github" | ||
| }, | ||
| "version": "0.4.17", | ||
| "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, | ||
| "is_secret": true | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should define OAuth and not require an Apify token
There was a problem hiding this comment.
Choose a reason for hiding this comment
The 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.