Skip to content
Merged
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
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ install: ## Install the dependencies
build: ## Build the docs site
@pnpm build

lint: ## Lint the codebase
@pnpm run lint

test: ## Run the tests
@pnpm test -- --run

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: "Integrate Arcade tools with Google ADK agents"

# Arcade with Google ADK

[Google ADK](https://github.com/google/adk-python/) is a modular framework for building and deploying AI agents. It's optimized for Gemini and the Google ecosystem. Arcade integrates with both the Python and TypeScript versions, giving your agents access to Gmail, GitHub, Slack, and 100+ other tools.
[Google ADK](https://github.com/google/adk-python/) is a modular framework for building and deploying AI agents. It's optimized for Gemini and the Google ecosystem. Arcade integrates with both the Python and TypeScript versions, giving your agents access to Gmail, GitHub, Slack, and 7,000+ other tools.

## Get started

Expand All @@ -22,6 +22,6 @@ With Arcade and Google ADK, your agents can:
- Post messages to Slack channels
- Create GitHub issues and pull requests
- Search the web and extract content
- Access 100+ other integrations
- Access 7,000+ other integrations

Browse the [full MCP server catalog](/resources/integrations) to see all available tools.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Steps, Tabs, Callout } from "nextra/components";

# Setup Arcade with Google ADK (TypeScript)

[Google ADK for TypeScript](https://github.com/google/adk-js) provides a framework for building AI agents in TypeScript. Arcade's `@arcadeai/arcadejs` library provides the tools integration, allowing your agents to access Gmail, GitHub, Slack, and 100+ other services.
[Google ADK for TypeScript](https://github.com/google/adk-js) provides a framework for building AI agents in TypeScript. Arcade's `@arcadeai/arcadejs` library provides the tools integration, allowing your agents to access Gmail, GitHub, Slack, and 7,000+ other services.

<GuideOverview>
<GuideOverview.Outcomes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: "Integrate Arcade tools with LangChain agents"

# Arcade with LangChain

[LangChain](https://www.langchain.com/) is a popular framework for building AI agents that abstracts much of the complexity of agent development. Arcade integrates with both the Python and JavaScript versions, giving your agents access to Gmail, GitHub, Slack, and 100+ other tools.
[LangChain](https://www.langchain.com/) is a popular framework for building AI agents that abstracts much of the complexity of agent development. Arcade integrates with both the Python and JavaScript versions, giving your agents access to Gmail, GitHub, Slack, and 7,000+ other tools.

## Get started

Expand All @@ -22,7 +22,7 @@ With Arcade and LangChain, your agents can:
- Post messages to Slack channels
- Create GitHub issues and pull requests
- Search the web and extract content
- Access 100+ other integrations
- Access 7,000+ other integrations

Browse the [full MCP server catalog](/resources/integrations) to see all available tools.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: "Integrate Arcade tools with the OpenAI Agents SDK"

# Arcade with OpenAI Agents

The [OpenAI Agents SDK](https://openai.github.io/openai-agents-python/) provides a framework for building AI agents. Arcade integrates with both the Python and JavaScript versions, giving your agents access to Gmail, GitHub, Slack, and 100+ other tools.
The [OpenAI Agents SDK](https://openai.github.io/openai-agents-python/) provides a framework for building AI agents. Arcade integrates with both the Python and JavaScript versions, giving your agents access to Gmail, GitHub, Slack, and 7,000+ other tools.

## Get started

Expand All @@ -22,6 +22,6 @@ With Arcade and OpenAI Agents, your agents can:
- Post messages to Slack channels
- Create GitHub issues and pull requests
- Search the web and extract content
- Access 100+ other integrations
- Access 7,000+ other integrations

Browse the [full MCP server catalog](/resources/integrations) to see all available tools.
10 changes: 5 additions & 5 deletions app/en/home/landing-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ export function LandingPage() {
delay: ANIMATION_DELAYS.initial,
}}
>
Arcade handles OAuth, manages user tokens, and gives you
100+pre-built integrations so your agents can take real action in
Arcade handles OAuth, manages user tokens, and gives you 7,000+
pre-built integrations so your agents can take real action in
production.
</motion.p>
<motion.div
Expand Down Expand Up @@ -318,7 +318,7 @@ export function LandingPage() {
{/* Pre-built Integrations — desktop: col 1 row 2 */}
<div className="min-[1062px]:col-start-1 min-[1062px]:row-start-2">
<QuickStartCard
description="Browse 100+ ready-to-use integrations for Gmail, Slack, GitHub, and more."
description="Browse 7,000+ ready-to-use integrations for Gmail, Slack, GitHub, and more."
href={INTEGRATIONS_PAGE_HREF}
icon={Puzzle}
logos={[
Expand Down Expand Up @@ -452,7 +452,7 @@ export function LandingPage() {
INTEGRATIONS_PAGE_HREF
)}
>
See all 100+
See all 7,000+
<ArrowRight className="ml-2 h-4 w-4" />
</Link>
</Button>
Expand Down Expand Up @@ -579,7 +579,7 @@ export function LandingPage() {
title="Runtime"
/>
<QuickStartCard
description="Catalog of pre-built tools and integrations. Browse 100+ ready-to-use MCP servers."
description="Catalog of pre-built tools and integrations. Browse 7,000+ ready-to-use MCP servers."
href={INTEGRATIONS_PAGE_HREF}
icon={ToolCase}
title="Tool Catalog"
Expand Down
Loading