Spaces:
Running
Running
zzstoatzz Claude commited on
Commit ·
a812e50
1
Parent(s): 806b04a
Add Community section to documentation
Browse files- Add new Community tab to docs navigation
- Create community showcase page for featuring high-quality projects
- Include example project (MCP Dummy Server) as initial content
- Add guidelines for community contributions
- Link to contrib modules in Further Reading section
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- docs/community/README.md +22 -0
- docs/community/showcase.mdx +34 -0
- docs/docs.json +7 -0
docs/community/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Community Section
|
| 2 |
+
|
| 3 |
+
This directory contains community-contributed content and showcases for FastMCP.
|
| 4 |
+
|
| 5 |
+
## Structure
|
| 6 |
+
|
| 7 |
+
- `showcase.mdx` - Main community showcase page featuring high-quality projects and examples
|
| 8 |
+
|
| 9 |
+
## Adding Content
|
| 10 |
+
|
| 11 |
+
To add new community content:
|
| 12 |
+
1. Create a new MDX file in this directory
|
| 13 |
+
2. Update `docs.json` to include it in the navigation
|
| 14 |
+
3. Follow the existing format for consistency
|
| 15 |
+
|
| 16 |
+
## Guidelines
|
| 17 |
+
|
| 18 |
+
Community content should:
|
| 19 |
+
- Demonstrate best practices
|
| 20 |
+
- Provide educational value
|
| 21 |
+
- Include proper documentation
|
| 22 |
+
- Be maintained and up-to-date
|
docs/community/showcase.mdx
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: 'Community Showcase'
|
| 3 |
+
description: 'High-quality projects and examples from the FastMCP community'
|
| 4 |
+
icon: 'users'
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
## Featured Projects
|
| 8 |
+
|
| 9 |
+
Discover exemplary MCP servers and implementations created by our community. These projects demonstrate best practices and innovative uses of FastMCP.
|
| 10 |
+
|
| 11 |
+
### Learning Resources
|
| 12 |
+
|
| 13 |
+
<Card title="MCP Dummy Server" icon="graduation-cap" href="https://github.com/WaiYanNyeinNaing/mcp-dummy-server">
|
| 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.
|
| 20 |
+
|
| 21 |
+
## Contributing
|
| 22 |
+
|
| 23 |
+
To get your project featured:
|
| 24 |
+
|
| 25 |
+
1. Ensure your project demonstrates best practices
|
| 26 |
+
2. Include comprehensive documentation
|
| 27 |
+
3. Add clear usage examples
|
| 28 |
+
4. Open a discussion in our [GitHub Discussions](https://github.com/jlowin/fastmcp/discussions)
|
| 29 |
+
|
| 30 |
+
We review submissions regularly and feature projects that provide value to the FastMCP community.
|
| 31 |
+
|
| 32 |
+
## Further Reading
|
| 33 |
+
|
| 34 |
+
- [Contrib Modules](/integrations/contrib) - Community-contributed modules that are distributed with FastMCP itself
|
docs/docs.json
CHANGED
|
@@ -150,6 +150,13 @@
|
|
| 150 |
"pages": [
|
| 151 |
"changelog"
|
| 152 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 153 |
}
|
| 154 |
]
|
| 155 |
},
|
|
|
|
| 150 |
"pages": [
|
| 151 |
"changelog"
|
| 152 |
]
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"anchor": "Community",
|
| 156 |
+
"icon": "users",
|
| 157 |
+
"pages": [
|
| 158 |
+
"community/showcase"
|
| 159 |
+
]
|
| 160 |
}
|
| 161 |
]
|
| 162 |
},
|