alihmaou commited on
Commit
3cd2521
·
verified ·
1 Parent(s): a60731c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -10
app.py CHANGED
@@ -55,16 +55,22 @@ def reload_tools_from_url(mcp_url_input):
55
  return gr.DataFrame(value=df)
56
 
57
  with gr.Blocks() as demo:
58
- gr.Markdown("""
59
- <div align="center">
60
- <h1>🚀 MCP Explorer – Agents-MCP-Hackathon (June 2025)</h1>
61
- <p>
62
- 🔍 Query any MCP-compatible endpoint, 🛠️ browse available tools in a clean table view, and 🤖 test real-time interactions using a `smolagent` powered by `HuggingFace`. <br/>
63
- Perfect for 🧪 exploring fellow participants’ tools or 🧰 debugging your own MCP server during the event! </br>
64
- 🍒 As a cherry on the cake, the list of the tools developed for the hackathon will be updated here from time to time (see src/bonus.py) : <a href="https://huggingface.co/datasets/alihmaou/Agents_MCP_Hackathon_Tools_List">Ready to use hackathon MCP tools list</a>
65
- </p>
66
- </div>
67
- """,)
 
 
 
 
 
 
68
 
69
  with gr.Row():
70
 
 
55
  return gr.DataFrame(value=df)
56
 
57
  with gr.Blocks() as demo:
58
+ gr.HTML("""
59
+ <div style="text-align:center; max-width: 100%; margin-bottom: 20px;">
60
+ <h1 style="font-size: 2em; margin-bottom: 0.5em;">
61
+ 🚀 MCP Explorer – Agents-MCP-Hackathon (June 2025)
62
+ </h1>
63
+ <p style="font-size: 1em; line-height: 1.5em; margin: 0 auto; max-width: 600px;">
64
+ 🔍 Query any MCP-compatible endpoint, 🛠️ browse available tools in a clean table view, and 🤖 test real-time interactions using a <code>smolagent</code> powered by <code>HuggingFace</code>.<br/>
65
+ Perfect for 🧪 exploring fellow participants’ tools or 🧰 debugging your own MCP server during the event!<br/>
66
+ 🍒 As a cherry on the cake, the list of the tools developed for the hackathon will be updated here from time to time (see <code>src/bonus.py</code>):<br/>
67
+ <a href="https://huggingface.co/datasets/alihmaou/Agents_MCP_Hackathon_Tools_List" target="_blank" style="color: #4A90E2; text-decoration: underline;">
68
+ Ready to use hackathon MCP tools list
69
+ </a>
70
+ </p>
71
+ </div>
72
+ """
73
+ )
74
 
75
  with gr.Row():
76