chore(registry): add curated publish batch and fix icons#294
Open
chore(registry): add curated publish batch and fix icons#294
Conversation
Add a curated publish script for a handpicked set of higher-quality MCPs and update broken registry icon URLs so those entries render correctly in review flows. Made-with: Cursor
Contributor
There was a problem hiding this comment.
2 issues found across 4 files
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="scripts/publish-curated.ts">
<violation number="1" location="scripts/publish-curated.ts:235">
P2: Don't infer `has_oauth` from `configSchema`; this mislabels API-key based connections like VTEX as OAuth-enabled.</violation>
<violation number="2" location="scripts/publish-curated.ts:255">
P2: Preserve all declared categories instead of truncating them to the first value.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
|
|
||
| if (app.metadata?.tags?.length) meshMeta.tags = app.metadata.tags; | ||
| if (app.metadata?.categories?.length) { | ||
| meshMeta.categories = [app.metadata.categories[0]]; |
Contributor
There was a problem hiding this comment.
P2: Preserve all declared categories instead of truncating them to the first value.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At scripts/publish-curated.ts, line 255:
<comment>Preserve all declared categories instead of truncating them to the first value.</comment>
<file context>
@@ -0,0 +1,503 @@
+
+ if (app.metadata?.tags?.length) meshMeta.tags = app.metadata.tags;
+ if (app.metadata?.categories?.length) {
+ meshMeta.categories = [app.metadata.categories[0]];
+ }
+ if (readme) {
</file context>
Suggested change
| meshMeta.categories = [app.metadata.categories[0]]; | |
| meshMeta.categories = app.metadata.categories; |
| const isOfficial = app.metadata?.official ?? app.official ?? false; | ||
| const hasRemote = | ||
| app.connection?.type !== "BINDING" && Boolean(app.connection?.url); | ||
| const hasOAuth = Boolean(app.connection?.configSchema); |
Contributor
There was a problem hiding this comment.
P2: Don't infer has_oauth from configSchema; this mislabels API-key based connections like VTEX as OAuth-enabled.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At scripts/publish-curated.ts, line 235:
<comment>Don't infer `has_oauth` from `configSchema`; this mislabels API-key based connections like VTEX as OAuth-enabled.</comment>
<file context>
@@ -0,0 +1,503 @@
+ const isOfficial = app.metadata?.official ?? app.official ?? false;
+ const hasRemote =
+ app.connection?.type !== "BINDING" && Boolean(app.connection?.url);
+ const hasOAuth = Boolean(app.connection?.configSchema);
+
+ const tools: MeshTool[] | undefined = app.tools?.map((tool) => ({
</file context>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
scripts/publish-curated.tsto publish a curated set of 15 stronger MCP connections instead of the whole registry batchairtable/app.json,clickhouse/app.json, andcontent-scraper/app.jsonso those cards render correctly in the registry review UITest plan
bun scripts/publish-curated.ts --dry-runbun run checkis currently failing due to pre-existing unrelated issues in other MCPsMade with Cursor
Summary by cubic
Adds
scripts/publish-curated.tsto publish a focused batch of 15 higher-quality MCP connections, and fixes broken icon URLs so registry cards render correctly.New Features
airtable,apify,clickhouse,content-scraper,grain,google-calendar,google-docs,google-drive,google-gmail,google-sheets,perplexity,slack-mcp,stripe-official,supabase-official,vtex.--dry-run,--filter,--resume,--reset,--delay,--max-retries,--url(orMESH_ADMIN_URL) withPUBLISH_API_KEY.Bug Fixes
airtable/app.json,clickhouse/app.json, andcontent-scraper/app.json.Written for commit 7e420a0. Summary will update on new commits.