store: align Adapter Store cards with the marketing-site Marketplace#242
Merged
Conversation
…place
The in-app /connectors/store rendered minimal cards (name + description
+ region tag) with no brand logo, while anythingmcp.com/marketplace
shipped a richer design: branded tile, region flag, category/auth-type
chips, log-scale tool-count meter, install + docs buttons.
Same product surface, two faces — bring the cloud app in line:
Backend
- Expose connector.authType on each AdapterMeta so the card can render
the auth-type chip without a per-row /api/adapters/:slug round-trip.
Frontend
- New <BrandTile> renders the brand SVG from /logos/connectors/<icon>.svg
with onError fallback to a coloured monogram tile (deterministic from
slug). Mirrors the marketing-site BrandTile pixel-for-pixel.
- Card redesign: logo + name + region flag header, category·region
meta, line-clamp-3 description, dashed-border footer with
<toolCount> tools · [bar viz] · [auth chip] · [docs ↗] · [Install →]
- Auth chip uses an emerald accent for NONE (public APIs) and a neutral
pill for everything else, mirroring the marketing card. Lock/Sparkles
icons inline.
No behaviour change: the install button still routes through the
existing credentials modal + McpAssignModal.
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
The in-app
/connectors/storepage was visually out of sync with the marketing-site/marketplace— same data, two faces. This PR brings the cloud cards to feature parity with the site cards.Before
After
<BrandTile>— renders the brand SVG from/logos/connectors/<icon>.svgwithonErrorfallback to a deterministic coloured-monogram tile (same algorithm as the marketing site)CATEGORY · REGIONfont-mono uppercase meta lineNONE/ public, neutral + lock for everything else)hover:-translate-y-0.5micro-lift + brand-coloured border on hoverBackend (1 small change)
AdapterMeta.authTypeis now exposed bylistAdapters()so the card can render the auth chip without a per-row/api/adapters/:sluground-trip.No behaviour change
Install button still routes through the existing credentials modal +
McpAssignModal. The auto-install via?install=<slug>query param is unaffected.Test plan
tsc --noEmitclean (backend + frontend)catalog.spec.ts2127 / 2127 pass