Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
flatio-community-unofficial
/
Flat-API-MCP
like
1
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
faf4025
Flat-API-MCP
/
app.py
xarical
Create app.py
faf4025
5 months ago
raw
Copy download link
history
blame
Safe
235 Bytes
import
gradio
as
gr
demo = gr.load_openapi(
openapi_spec=
"https://flat.io/developers/api/reference/openapi.json"
,
base_url=
"https://api.flat.io/v2"
,
paths=[
"/scores.*"
],
methods=[
"get"
],
)
demo.launch(mcp_server=
True
)