Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/web/src/components/ui/McpServerIcon/asana.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions packages/web/src/components/ui/McpServerIcon/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { MarketplaceServer } from "@/lib/marketplace-data";
import { cn } from "@/lib/utils";
import AsanaIcon from "./asana.svg?react";
import AstroIcon from "./astro.svg?react";
import Context7Icon from "./context7.svg?react";
import FigmaIcon from "./figma.svg?react";
Expand Down Expand Up @@ -73,6 +74,10 @@ function Icon({ icon }: { icon: string }) {
return <AstroIcon className="w-8 h-8" />;
}

if (icon === "asana") {
return <AsanaIcon className="w-8 h-8" />;
}

// if (icon === "mcp") {
return <McpIcon className="w-8 h-8" />;
// }
Expand Down
10 changes: 10 additions & 0 deletions packages/web/src/lib/marketplace-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,14 @@ export const MARKETPLACE_SERVERS: MarketplaceServer[] = [
docsUrl: "https://mcp.docs.astro.build/",
category: "development",
},
{
name: "Asana",
description: "Asana is a project management tool for teams.",
command: "https://mcp.asana.com/sse",
type: "http",
icon: "asana",
toolCount: 44,
docsUrl: "https://developers.asana.com/docs/using-asanas-mcp-server",
category: "productivity",
},
];