Spaces:
Running
Running
Commit
·
a13b986
1
Parent(s):
21bc165
Add link badges in the space
Browse files- src/hf_eda_mcp/server.py +23 -6
src/hf_eda_mcp/server.py
CHANGED
|
@@ -25,12 +25,25 @@ def create_gradio_app(config: ServerConfig) -> gr.Blocks:
|
|
| 25 |
) as app:
|
| 26 |
gr.Markdown(
|
| 27 |
"""
|
| 28 |
-
#
|
| 29 |
-
|
| 30 |
-
**
|
| 31 |
-
|
| 32 |
-
This server provides four
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
"""
|
| 35 |
)
|
| 36 |
|
|
@@ -222,6 +235,10 @@ def create_gradio_app(config: ServerConfig) -> gr.Blocks:
|
|
| 222 |
- **Cache Directory**: {config.cache_dir or "Default system cache"}
|
| 223 |
- **Max Sample Size**: {config.max_sample_size:,}
|
| 224 |
- **Request Timeout**: {config.request_timeout}s
|
|
|
|
|
|
|
|
|
|
|
|
|
| 225 |
"""
|
| 226 |
)
|
| 227 |
|
|
|
|
| 25 |
) as app:
|
| 26 |
gr.Markdown(
|
| 27 |
"""
|
| 28 |
+
# 📊 HuggingFace EDA MCP Server
|
| 29 |
+
|
| 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 |
+
|
| 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 |
+
|
| 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 |
|
|
|
|
| 235 |
- **Cache Directory**: {config.cache_dir or "Default system cache"}
|
| 236 |
- **Max Sample Size**: {config.max_sample_size:,}
|
| 237 |
- **Request Timeout**: {config.request_timeout}s
|
| 238 |
+
|
| 239 |
+
### Documentation
|
| 240 |
+
|
| 241 |
+
For full documentation, MCP client configuration, and local development instructions, see the [README](https://huggingface.co/spaces/MCP-1st-Birthday/hf-eda-mcp/blob/main/README.md).
|
| 242 |
"""
|
| 243 |
)
|
| 244 |
|