File size: 348 Bytes
049aa3e
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12

import os
import gradio as gr

gr.load_openapi(
    openapi_spec="https://api-development-bb49.up.railway.app/spec",
    base_url="https://api-development-bb49.up.railway.app/",
    paths=["^(?!.*(demographics|rank|user)).*$"],
    methods=['GET', 'POST', 'PUT', 'DELETE'],
    auth_token=os.getenv("OPENAPI_AUTH_TOKEN")
).launch(mcp_server=True)