Skip to content

Commit ab5146b

Browse files
authored
Add MCP Server tab to the 'Examples' page (#884)
* Add MCP Servers tab to examples page * Remove nasty HTML * Revert unrelated file change * Remove another unrelated change
1 parent 81e1d0a commit ab5146b

1 file changed

Lines changed: 55 additions & 9 deletions

File tree

app/en/resources/examples/page.mdx

Lines changed: 55 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
---
2-
title: "Example apps"
3-
description: "Example apps using Arcade's tools and MCP Servers in workflows and with agents."
2+
title: "Examples"
3+
description: "Example apps and MCP servers using Arcade's tools and MCP servers in workflows and with agents."
44
---
55

6-
## Example apps
6+
## Examples
77

8-
These example repos demonstrate Arcade's capabilities in real-world scenarios, from AI-powered research tools to Slack integrations.
8+
Get up and running faster with ready-to-use example repositories.
99

10-
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.
10+
Browse sample apps and MCP servers to see how Arcade works in practice, then fork them as a starting point or use them as a reference while building your own projects and integrations.
1111

1212
import { SampleAppCard } from "../../../_components/sample-app-card";
13+
import { Tabs } from "nextra/components";
14+
15+
<Tabs items={["Sample apps", "Example MCP servers"]}>
16+
<Tabs.Tab>
1317

1418
<div className="grid gap-8 md:grid-cols-2 mt-8">
1519
<SampleAppCard
@@ -101,26 +105,68 @@ import { SampleAppCard } from "../../../_components/sample-app-card";
101105
blank
102106
/>
103107
</div>
104-
## Submit your app
108+
109+
### Submit your app
105110

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

108-
### Guidelines
113+
#### Guidelines
109114

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

116-
### How to submit
121+
#### How to submit
117122

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

124-
### Need help?
129+
#### Need help?
125130

126131
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.
132+
133+
</Tabs.Tab>
134+
<Tabs.Tab>
135+
136+
<div className="grid gap-8 md:grid-cols-2 mt-8">
137+
<SampleAppCard
138+
title="Granola MCP Server"
139+
description="MCP server for Granola, enabling AI agents to access and interact with your meeting notes and transcripts."
140+
href="https://github.com/ArcadeAI/granola-mcp-server"
141+
tags={["Python"]}
142+
date="Mar 2026"
143+
blank
144+
/>
145+
</div>
146+
147+
### Submit your MCP server
148+
149+
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.
150+
151+
#### Guidelines
152+
153+
- **Open source**: Your MCP server should be publicly available on GitHub
154+
- **Uses Arcade**: Your server should integrate with Arcade's tools, auth, or SDK
155+
- **Working demo**: Include clear setup instructions and ensure your server runs
156+
- **Good documentation**: Provide a clear README with installation and usage instructions
157+
- **Appropriate content**: Family friendly and professional servers only
158+
159+
#### How to submit
160+
161+
1. Fork the [Arcade docs repository](https://github.com/ArcadeAI/docs)
162+
2. Add your server to `/app/en/resources/examples/page.mdx` following the existing pattern
163+
3. Include a descriptive title, clear description, and appropriate tags
164+
4. Create a pull request with details about your server, its Arcade integration, and a link to the public repository.
165+
5. The team will review and potentially feature your server
166+
167+
#### Need help?
168+
169+
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.
170+
171+
</Tabs.Tab>
172+
</Tabs>

0 commit comments

Comments
 (0)