File size: 377 Bytes
adcd9ba
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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)