feat: add MCP Apps catalog section#372
Open
technologicsingularity wants to merge 2 commits intoarchestra-ai:mainfrom
Open
feat: add MCP Apps catalog section#372technologicsingularity wants to merge 2 commits intoarchestra-ai:mainfrom
technologicsingularity wants to merge 2 commits intoarchestra-ai:mainfrom
Conversation
Add a new catalog section at /mcp-catalog/apps that lists MCP client applications (apps that consume MCP servers), separate from the existing MCP servers catalog. Changes: - schemas.ts: Add McpAppCategorySchema, McpAppPricingSchema, McpAppPlatformSchema, and ArchestraMcpAppManifestSchema - types.ts: Export McpApp and related TypeScript types - data/mcp-apps.json: Initial dataset of 12 MCP client apps including Claude Desktop, Cursor, Zed, VS Code + GitHub Copilot, Windsurf, n8n, LangChain, Continue.dev, Cline, LibreChat, Archestra, Amazon Q - lib/apps.ts: Data loader with filtering/search utilities - components/McpAppCard.tsx: Card component for displaying MCP apps - components/McpAppsClient.tsx: Client-side filtering and search UI - app/mcp-catalog/apps/page.tsx: New page at /mcp-catalog/apps - components/Header.tsx: Add 'MCP Apps' nav link
|
@technologicsingularity is attempting to deploy a commit to the Archestra projects Team on Vercel. A member of the Team first needs to authorize it. |
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
Adds a new MCP Apps catalog section at
/mcp-catalog/appslisting MCP client applications — apps that consume MCP servers — complementing the existing MCP servers catalog.Motivation
The Archestra MCP catalog currently indexes MCP servers. Many users also need to discover which client applications support the MCP protocol. This PR adds that second dimension.
Changes
New:
ArchestraMcpAppManifestSchema(schemas.ts)Zod schema for MCP client apps:
name,display_name,descriptioncategory— IDE | Desktop Client | Automation | Framework | CLI | Web App | Otherwebsite_url,logo_url,github_urlsupported_platforms— windows | mac | linux | webpricing— free | paid | freemiumNew:
/mcp-catalog/appspageNew:
mcp-apps.json— 12 initial entriesClaude Desktop, Cursor, Zed, VS Code + GitHub Copilot, Windsurf, n8n, LangChain, Continue.dev, Cline, LibreChat, Archestra, Amazon Q Developer
Existing logos from
/publicreused:logo_claude.png,logo_cursor.png,logo_n8n.png,logo_langchain.png.Updated:
Header.tsxAdded "MCP Apps" navigation link (desktop + mobile menu).
New utility:
lib/apps.tsgetAllApps(),getAppsByCategory(),searchApps()functions.Validation
pnpm typecheck— 0 TypeScript errorspnpm prettier --write .— all files formattedpnpm catalog:validate— 880 server entries valid, 0 invalidFiles Changed
Notes
mcp-servers.json/api/appsendpoint, individual app detail pages