KhalilGuetari commited on
Commit
ea0aee9
·
1 Parent(s): a13b986

Add badges to the app

Browse files
Files changed (1) hide show
  1. src/hf_eda_mcp/server.py +16 -14
src/hf_eda_mcp/server.py CHANGED
@@ -30,22 +30,24 @@ def create_gradio_app(config: ServerConfig) -> gr.Blocks:
30
  **MCP server for exploratory data analysis of HuggingFace datasets**
31
 
32
  This server provides four tools for dataset exploration that are automatically exposed as MCP tools.
33
-
34
- <p align="center">
35
- <a href="https://www.youtube.com/watch?v=XdP7zGSb81k" target="_blank">
36
- <img src="https://img.shields.io/badge/▶️_Demo_Video-FF0000?style=for-the-badge&logo=youtube&logoColor=white" alt="Demo Video">
37
- </a>
38
- &nbsp;
39
- <a href="https://www.linkedin.com/posts/khalil-guetari-00a61415a_mcp-server-for-huggingface-datasets-discovery-activity-7400587711838842880-2K8p" target="_blank">
40
- <img src="https://img.shields.io/badge/LinkedIn_Post-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white" alt="LinkedIn Post">
41
- </a>
42
- &nbsp;
43
- <a href="https://huggingface.co/spaces/MCP-1st-Birthday/hf-eda-mcp/blob/main/README.md" target="_blank">
44
- <img src="https://img.shields.io/badge/📖_README-FFD21E?style=for-the-badge" alt="README">
45
- </a>
46
- </p>
47
  """
48
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
  # Create interfaces for each EDA tool - these will be automatically exposed as MCP tools
51
  with gr.Tab("📊 Dataset Metadata"):
 
30
  **MCP server for exploratory data analysis of HuggingFace datasets**
31
 
32
  This server provides four tools for dataset exploration that are automatically exposed as MCP tools.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  """
34
  )
35
+ with gr.Row():
36
+ gr.HTML(
37
+ """
38
+ <div style="display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;">
39
+ <a href="https://www.youtube.com/watch?v=XdP7zGSb81k" target="_blank">
40
+ <img src="https://img.shields.io/badge/▶️_Demo_Video-FF0000?style=for-the-badge&logo=youtube&logoColor=white" alt="Demo Video">
41
+ </a>
42
+ <a href="https://www.linkedin.com/posts/khalil-guetari-00a61415a_mcp-server-for-huggingface-datasets-discovery-activity-7400587711838842880-2K8p" target="_blank">
43
+ <img src="https://img.shields.io/badge/LinkedIn_Post-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white" alt="LinkedIn Post">
44
+ </a>
45
+ <a href="https://huggingface.co/spaces/MCP-1st-Birthday/hf-eda-mcp/blob/main/README.md" target="_blank">
46
+ <img src="https://img.shields.io/badge/📖_README-FFD21E?style=for-the-badge" alt="README">
47
+ </a>
48
+ </div>
49
+ """
50
+ )
51
 
52
  # Create interfaces for each EDA tool - these will be automatically exposed as MCP tools
53
  with gr.Tab("📊 Dataset Metadata"):