| import gradio as gr | |
| from pathlib import Path | |
| def create_mcp_server_tab(): | |
| """Create the content for the MCP Server on embedded device tab.""" | |
| # Read markdown content from file | |
| md_file = Path(__file__).parent / "mcp_server_detail.md" | |
| markdown_content = md_file.read_text(encoding='utf-8') | |
| with gr.Column(): | |
| gr.Markdown(markdown_content) | |