Skip to content
Open
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
64 changes: 55 additions & 9 deletions app/en/resources/examples/page.mdx
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
---
title: "Example apps"
description: "Example apps using Arcade's tools and MCP Servers in workflows and with agents."
title: "Examples"
description: "Example apps and MCP servers using Arcade's tools and MCP servers in workflows and with agents."
---

## Example apps
## Examples

These example repos demonstrate Arcade's capabilities in real-world scenarios, from AI-powered research tools to Slack integrations.
Explore example repositories that demonstrate Arcade's capabilities in real-world scenarios.

Use these repositories as starting points for your own projects or reference implementations for specific integration patterns. Each repository includes complete source code and setup instructions to help you understand implementation details and get started quickly.
Use these repositories as starting points for your own projects or reference implementations for specific integration patterns. Each repository includes complete source code and setup instructions.

import { SampleAppCard } from "../../../_components/sample-app-card";
import { Tabs } from "nextra/components";

<Tabs items={["Sample apps", "MCP servers"]}>
<Tabs.Tab>

<div className="grid gap-8 md:grid-cols-2 mt-8">
<SampleAppCard
Expand Down Expand Up @@ -101,26 +105,68 @@ import { SampleAppCard } from "../../../_components/sample-app-card";
blank
/>
</div>
## Submit your app

### Submit your app

Built something with Arcade? The team would love to feature it! Submit your app by creating a pull request to the documentation site.

### Guidelines
#### Guidelines

- **Open source**: Your app should be publicly available on GitHub
- **Uses Arcade**: Your app should integrate with Arcade's tools, MCP servers, or SDK
- **Working demo**: Include clear setup instructions and ensure your app runs
- **Good documentation**: Provide a clear README with installation and usage instructions
- **Appropriate content**: Family friendly and professional applications only

### How to submit
#### How to submit

1. Fork the [Arcade docs repository](https://github.com/ArcadeAI/docs)
2. Add your app to `/app/en/resources/examples/page.mdx` following the existing pattern
3. Include a descriptive title, clear description, and appropriate tags
4. Create a pull request with details about your app and its Arcade integration
5. The team will review and potentially feature your app

### Need help?
#### Need help?

If you have questions about submitting your app, feel free to [contact the team](/resources/contact-us) or open an issue in the docs repository.

</Tabs.Tab>
<Tabs.Tab>

<div className="grid gap-8 md:grid-cols-2 mt-8">
<SampleAppCard
title="Granola MCP Server"
description="MCP server for Granola, enabling AI agents to access and interact with your meeting notes and transcripts."
href="https://github.com/ArcadeAI/granola-mcp-server"
tags={["Python"]}
date="Mar 2026"
blank
/>
</div>

### Submit your MCP server

Built an MCP server with Arcade? The team would love to feature it! Submit your server by creating a pull request to the documentation site.

#### Guidelines

- **Open source**: Your MCP server should be publicly available on GitHub
- **Uses Arcade**: Your server should integrate with Arcade's tools, auth, or SDK
- **Working demo**: Include clear setup instructions and ensure your server runs
- **Good documentation**: Provide a clear README with installation and usage instructions
- **Appropriate content**: Family friendly and professional servers only

#### How to submit

1. Fork the [Arcade docs repository](https://github.com/ArcadeAI/docs)
2. Add your server to `/app/en/resources/examples/page.mdx` following the existing pattern
3. Include a descriptive title, clear description, and appropriate tags
4. Create a pull request with details about your server and its Arcade integration
5. The team will review and potentially feature your server

#### Need help?

If you have questions about submitting your MCP server, feel free to [contact the team](/resources/contact-us) or open an issue in the docs repository.

</Tabs.Tab>
</Tabs>
Loading