Spaces:
Running
Running
zzstoatzz Claude commited on
Commit ·
5ac8216
1
Parent(s): a812e50
Add video tutorials to community showcase
Browse files- Add YouTube tutorial by Greg + Code on building remote MCP servers
- Add YouTube tutorial by ZazenCodes on FastMCP best practices
- Create Video Tutorials subsection under Learning Resources
- Add docs command to justfile for local documentation serving
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- docs/community/showcase.mdx +10 -0
- justfile +4 -1
docs/community/showcase.mdx
CHANGED
|
@@ -14,6 +14,16 @@ Discover exemplary MCP servers and implementations created by our community. The
|
|
| 14 |
A comprehensive educational example demonstrating FastMCP best practices with professional dual-transport server implementation, interactive test client, and detailed documentation.
|
| 15 |
</Card>
|
| 16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
### Community Examples
|
| 18 |
|
| 19 |
Have you built something interesting with FastMCP? We'd love to feature high-quality examples here! Start a [discussion on GitHub](https://github.com/jlowin/fastmcp/discussions) to share your project.
|
|
|
|
| 14 |
A comprehensive educational example demonstrating FastMCP best practices with professional dual-transport server implementation, interactive test client, and detailed documentation.
|
| 15 |
</Card>
|
| 16 |
|
| 17 |
+
#### Video Tutorials
|
| 18 |
+
|
| 19 |
+
<Card title="Build Remote MCP Servers w/ Python & FastMCP" icon="youtube" href="https://www.youtube.com/watch?v=bOYkbXP-GGo">
|
| 20 |
+
Claude Integrations Tutorial by Greg + Code - Learn how to build remote MCP servers using Python and FastMCP.
|
| 21 |
+
</Card>
|
| 22 |
+
|
| 23 |
+
<Card title="FastMCP — the best way to build an MCP server with Python" icon="youtube" href="https://www.youtube.com/watch?v=rnljvmHorQw">
|
| 24 |
+
Tutorial by ZazenCodes - Comprehensive guide to building MCP servers with FastMCP in Python.
|
| 25 |
+
</Card>
|
| 26 |
+
|
| 27 |
### Community Examples
|
| 28 |
|
| 29 |
Have you built something interesting with FastMCP? We'd love to feature high-quality examples here! Start a [discussion on GitHub](https://github.com/jlowin/fastmcp/discussions) to share your project.
|
justfile
CHANGED
|
@@ -6,4 +6,7 @@ test: build
|
|
| 6 |
|
| 7 |
# Run pyright on all files
|
| 8 |
typecheck:
|
| 9 |
-
uv run --frozen pyright
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
# Run pyright on all files
|
| 8 |
typecheck:
|
| 9 |
+
uv run --frozen pyright
|
| 10 |
+
|
| 11 |
+
docs:
|
| 12 |
+
cd docs && npx mintlify dev
|