-
Notifications
You must be signed in to change notification settings - Fork 7
DEV-124 Adding overview page for frameworks and MCP clients #613
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
7 commits
Select commit
Hold shift + click to select a range
7892532
Adding overview page for frameworks and MCP clients
nearestnabors fee9a23
Update app/en/home/agent-frameworks-overview/page.mdx
nearestnabors 53890ae
Pagerduty documentation (#600)
jottakka 8a516a6
Finesse the design of the framework tiles
nearestnabors 3d5cfd9
adding a universal tile for future use. Adding bak MCP clients
nearestnabors c526ae6
puts tabs in
nearestnabors a32aae7
swapping tabs
nearestnabors 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 |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| "use client"; | ||
| import { Card, CardHeader, CardTitle } from "@arcadeai/design-system"; | ||
| import { cn } from "@arcadeai/design-system/lib/utils"; | ||
| import Link from "next/link"; | ||
| import type React from "react"; | ||
|
|
||
| type PlatformCardProps = { | ||
| name: string; | ||
| icon: string; | ||
| link: string; | ||
| type: "Agent Framework" | "MCP Client"; | ||
| }; | ||
|
|
||
| export const PlatformCard: React.FC<PlatformCardProps> = ({ | ||
| name, | ||
| icon, | ||
| link, | ||
| type, | ||
| }) => { | ||
| const cardContent = ( | ||
| <Card | ||
| className={cn( | ||
| "flex h-full flex-col gap-1.5 border border-gray-600/20 bg-gray-600/2 py-3 backdrop-blur-sm transition-all duration-300 hover:border-primary hover:bg-gray-600/3 hover:shadow-lg dark:bg-gray-900/80" | ||
| )} | ||
| > | ||
| <CardHeader> | ||
| <div className="flex items-center space-x-5"> | ||
| <div className="relative flex h-10 w-10 items-center justify-center overflow-hidden rounded-lg"> | ||
| <img alt={`${name} logo`} className="size-9" src={icon} /> | ||
| </div> | ||
| <div> | ||
| <CardTitle className="mb-0.5 text-base text-gray-900 dark:text-gray-50"> | ||
| {name} | ||
| </CardTitle> | ||
| <div className="text-gray-600 text-xs dark:text-gray-400"> | ||
| {type} | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </CardHeader> | ||
| </Card> | ||
| ); | ||
|
|
||
| return <Link href={link}>{cardContent}</Link>; | ||
| }; |
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,90 @@ | ||
| import { PlatformCard } from "@/app/_components/platform-card"; | ||
| import { Tabs } from "nextra/components"; | ||
|
|
||
| # Arcade with Agent Frameworks and MCP Clients | ||
|
|
||
| Arcade seamlessly integrates with your favorite agent frameworks and MCP clients, making it easy to add powerful tool-calling capabilities to your AI applications. | ||
|
|
||
| ## Agent Frameworks | ||
|
|
||
| <Tabs items={["Python", "JavaScript"]} storageKey="preferredLanguage"> | ||
| <Tabs.Tab> | ||
| <div className="mt-6 grid gap-3 sm:grid-cols-2 sm:gap-4 md:gap-5 lg:grid-cols-3"> | ||
| <PlatformCard | ||
| name="LangChain" | ||
| icon="https://avatars.githubusercontent.com/u/126733545?s=200&v=4" | ||
| link="/home/langchain/use-arcade-tools" | ||
| type="Agent Framework" | ||
| /> | ||
| <PlatformCard | ||
| name="CrewAI" | ||
| icon="https://avatars.githubusercontent.com/u/170677839?s=200&v=4" | ||
| link="/home/crewai/use-arcade-tools" | ||
| type="Agent Framework" | ||
| /> | ||
| <PlatformCard | ||
| name="OpenAI Agents" | ||
| icon="https://avatars.githubusercontent.com/u/14957082?s=200&v=4" | ||
| link="/home/oai-agents/overview" | ||
| type="Agent Framework" | ||
| /> | ||
| <PlatformCard | ||
| name="Google ADK" | ||
| icon="https://avatars.githubusercontent.com/u/1342004?s=200&v=4" | ||
| link="/home/google-adk/overview" | ||
| type="Agent Framework" | ||
| /> | ||
| </div> | ||
| </Tabs.Tab> | ||
| <Tabs.Tab> | ||
| <div className="mt-6 grid gap-3 sm:grid-cols-2 sm:gap-4 md:gap-5 lg:grid-cols-3"> | ||
| <PlatformCard | ||
| name="LangChain" | ||
| icon="https://avatars.githubusercontent.com/u/126733545?s=200&v=4" | ||
| link="/home/langchain/use-arcade-tools" | ||
| type="Agent Framework" | ||
| /> | ||
| <PlatformCard | ||
| name="Google ADK" | ||
| icon="https://avatars.githubusercontent.com/u/1342004?s=200&v=4" | ||
| link="/home/google-adk/overview" | ||
| type="Agent Framework" | ||
| /> | ||
| <PlatformCard | ||
| name="Mastra" | ||
| icon="https://avatars.githubusercontent.com/u/157496478?s=200&v=4" | ||
| link="/home/mastra/overview" | ||
| type="Agent Framework" | ||
| /> | ||
| <PlatformCard | ||
| name="Vercel AI" | ||
| icon="https://avatars.githubusercontent.com/u/14985020?s=200&v=4" | ||
| link="/home/vercelai/using-arcade-tools" | ||
| type="Agent Framework" | ||
| /> | ||
| </div> | ||
| </Tabs.Tab> | ||
| </Tabs> | ||
|
|
||
| ## MCP Clients | ||
|
|
||
| <div className="mt-8 grid gap-3 sm:grid-cols-2 sm:gap-4 md:gap-5 lg:grid-cols-3"> | ||
| <PlatformCard | ||
| name="Claude Desktop" | ||
| icon="https://claude.ai/images/claude_app_icon.png" | ||
| link="/home/mcp-clients/claude-desktop" | ||
| type="MCP Client" | ||
| /> | ||
| <PlatformCard | ||
| name="Cursor" | ||
| icon="https://www.cursor.com/favicon.ico" | ||
| link="/home/mcp-clients/cursor" | ||
| type="MCP Client" | ||
| /> | ||
| <PlatformCard | ||
| name="VS Code" | ||
| icon="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vscode/vscode-original.svg" | ||
| link="/home/mcp-clients/visual-studio-code" | ||
| type="MCP Client" | ||
| /> | ||
| </div> | ||
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
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.
Uh oh!
There was an error while loading. Please reload this page.