File size: 857 Bytes
08e88a0 6f70b23 08e88a0 6f70b23 3328321 ab4caf6 3328321 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
---
title: Website Generator
emoji: 💻
colorFrom: green
colorTo: gray
sdk: gradio
sdk_version: 5.31.0
app_file: app.py
pinned: false
license: mit
short_description: Transform website screenshots into functional HTML code,
tags:
- mcp-server-track
---
## Usage Instructions
### Video_URL: https://youtu.be/3GxNtBQRIUE
### Local Setup
1. Install dependencies:
```bash
pip install -r requirements.txt
```
2. Run the application:
```bash
python app.py
```
### MCP Configuration
If you want to use this tool with MCP (Model Context Protocol), copy the following configuration:
```json
{
"mcpServers": {
"gradio": {
"command": "npx",
"args": [
"mcp-remote",
"https://agents-mcp-hackathon-website-generator.hf.space/gradio_api/mcp/sse",
"--transport",
"sse-only"
]
}
}
}
``` |