MedCodeMCP / app.py
gpaasch's picture
plan.md outlines goals for this hackathon
40e71b1
raw
history blame
294 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(
fn=greet,
inputs=gr.Textbox(label="Input"),
outputs=gr.Textbox(label="Output"),
mcp_server=True
)
if __name__ == "__main__":
iface.launch(server_name="0.0.0.0", server_port=7860)