Agents-MCP-Hackathon/Stack_Overflow_MCP_Server
2
1#!/usr/bin/env python32"""3Stack Overflow MCP Server - Hugging Face Spaces App4A web interface and MCP server that provides Stack Overflow search capabilities.5"""6 7# Import everything from the main gradio_app8from gradio_app import *9 10if __name__ == "__main__":11 # Launch the app for Hugging Face Spaces12 demo.launch(13 mcp_server=True,14 server_name="0.0.0.0",15 server_port=7860,16 show_error=True,17 share=False18 )19 