> [!IMPORTANT]
> **You are reading the Github README!**
>
> - 📚 **Documentation**: See our [technical documentation](https://deepcritical.github.io/GradioDemo/) for detailed information
> - 📖 **Demo README**: Check out the [Demo README](..README.md) for more information > - 🏆 **Demo**: Kindly consider using our [Free Demo](https://hf.co/DataQuests/GradioDemo)
[](https://github.com/DeepCritical/GradioDemo)
[](deepcritical.github.io/GradioDemo/)
[](https://huggingface.co/spaces/DataQuests/DeepCritical)
[](https://codecov.io/gh/DeepCritical/GradioDemo)
[](https://discord.gg/qdfnvSPcqP)
## Quick Start
### 1. Environment Setup
```bash
# Install uv if you haven't already
pip install uv
# Sync dependencies
uv sync --all-extras
```
### 2. Run the UI
```bash
# Start the Gradio app
gradio run "src/app.py"
```
Open your browser to `http://localhost:7860`.
### 3. Connect via MCP
This application exposes a Model Context Protocol (MCP) server, allowing you to use its search tools directly from Claude Desktop or other MCP clients.
**MCP Server URL**: `http://localhost:7860/gradio_api/mcp/`
**Claude Desktop Configuration**:
Add this to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"deepcritical": {
"url": "http://localhost:7860/gradio_api/mcp/"
}
}
}
```