From 313b8d5bf16b1b99d1e2ad3af206801c18657da1 Mon Sep 17 00:00:00 2001 From: zzstoatzz Date: Thu, 12 Jun 2025 11:59:18 -0500 Subject: [PATCH] Add video tutorials to community showcase MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- docs/community/showcase.mdx | 10 ++++++++++ justfile | 5 ++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/community/showcase.mdx b/docs/community/showcase.mdx index 8bbd087e5..c3b5ad967 100644 --- a/docs/community/showcase.mdx +++ b/docs/community/showcase.mdx @@ -14,6 +14,16 @@ Discover exemplary MCP servers and implementations created by our community. The A comprehensive educational example demonstrating FastMCP best practices with professional dual-transport server implementation, interactive test client, and detailed documentation. +#### Video Tutorials + + + Claude Integrations Tutorial by Greg + Code - Learn how to build remote MCP servers using Python and FastMCP. + + + + Tutorial by ZazenCodes - Comprehensive guide to building MCP servers with FastMCP in Python. + + ### Community Examples 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. diff --git a/justfile b/justfile index 18bad5aff..6d897b2e9 100644 --- a/justfile +++ b/justfile @@ -6,4 +6,7 @@ test: build # Run pyright on all files typecheck: - uv run --frozen pyright \ No newline at end of file + uv run --frozen pyright + +docs: + cd docs && npx mintlify dev