Spaces:
Sleeping
Sleeping
File size: 6,866 Bytes
a0076fe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
import base64
import json
import mimetypes
import os
from dataclasses import dataclass
from typing import Any, Dict, Optional, Tuple
from urllib.parse import urlparse
import gradio as gr
import requests
CONFIG_FILE = "mcpuploadclient.config.json"
@dataclass(frozen=True)
class ClientConfig:
endpoint: str
access_token: str
request_timeout_seconds: int = 300
def load_config() -> ClientConfig:
config_path = os.path.join(os.getcwd(), CONFIG_FILE)
if not os.path.exists(config_path):
raise FileNotFoundError(
f"Config file not found: {config_path}. "
f"Create {CONFIG_FILE} next to app.py (working directory)."
)
with open(config_path, "r", encoding="utf-8") as f:
raw = json.load(f)
endpoint = raw.get("Endpoint") or raw.get("endpoint")
access_token = raw.get("AccessToken") or raw.get("access_token") or raw.get("Access_Token")
timeout = raw.get("RequestTimeoutSeconds") or raw.get("request_timeout_seconds") or 300
if not endpoint or not isinstance(endpoint, str):
raise ValueError("Config must include 'Endpoint' (string).")
if not access_token or not isinstance(access_token, str):
raise ValueError("Config must include 'AccessToken' (string).")
try:
timeout_int = int(timeout)
except Exception:
timeout_int = 300
return ClientConfig(endpoint=endpoint, access_token=access_token, request_timeout_seconds=timeout_int)
ALLOWED_EXTS = {".png", ".jpg", ".jpeg", ".webp"}
def _filename_from_url(image_url: str) -> str:
parsed = urlparse(image_url)
name = os.path.basename(parsed.path)
if not name:
raise ValueError(
"Image URL must end with a filename (e.g. https://.../foo.png). "
"URLs without a path filename are not supported."
)
return name
def _mime_from_filename(filename: str) -> str:
ext = os.path.splitext(filename)[1].lower()
if ext not in ALLOWED_EXTS:
raise ValueError(f"Unsupported image extension '{ext}'. Allowed: {sorted(ALLOWED_EXTS)}")
if ext == ".png":
return "image/png"
if ext in (".jpg", ".jpeg"):
return "image/jpeg"
if ext == ".webp":
return "image/webp"
guessed, _ = mimetypes.guess_type(filename)
return guessed or "application/octet-stream"
def _parse_first_sse_data_line(sse_text: str) -> Dict[str, Any]:
for line in sse_text.splitlines():
line = line.strip()
if not line:
continue
if line.startswith("data:"):
payload = line[5:].strip()
if not payload:
continue
return json.loads(payload)
raise ValueError("No SSE data lines found in server response.")
def mcp_upload(image_url: str, json_text: str) -> str:
image_url = (image_url or "").strip()
json_text = (json_text or "").strip()
if not image_url:
return "ERROR: image_url is required."
if not json_text:
return "ERROR: json_text is required."
try:
cfg = load_config()
except Exception as ex:
return f"ERROR: failed to load config: {ex}"
try:
image_file_name = _filename_from_url(image_url)
image_mime_type = _mime_from_filename(image_file_name)
base = os.path.splitext(image_file_name)[0]
json_file_name = base + ".json"
# Download image bytes
r = requests.get(image_url, timeout=cfg.request_timeout_seconds)
r.raise_for_status()
image_bytes = r.content
image_b64 = base64.b64encode(image_bytes).decode("ascii")
# Build JSON-RPC tool call
body = {
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "upload_image_and_json",
"arguments": {
"imageFileName": image_file_name,
"imageMimeType": image_mime_type,
"imageBase64": image_b64,
"jsonFileName": json_file_name,
"jsonText": json_text,
},
},
}
headers = {
"ProtocolVersion": "2025-06-18",
"Accept": "application/json, text/event-stream",
"Content-Type": "application/json",
"Authorization": f"Bearer {cfg.access_token}",
}
resp = requests.post(
cfg.endpoint,
headers=headers,
data=json.dumps(body, ensure_ascii=False).encode("utf-8"),
timeout=cfg.request_timeout_seconds,
)
resp.raise_for_status()
rpc = _parse_first_sse_data_line(resp.text)
# Extract tool-returned text
tool_text = (
rpc.get("result", {})
.get("content", [{}])[0]
.get("text")
)
if not tool_text:
return f"ERROR: server response did not include result.content[0].text. Raw first data: {json.dumps(rpc, ensure_ascii=False)}"
return tool_text
except requests.RequestException as ex:
return f"ERROR: HTTP request failed: {ex}"
except Exception as ex:
return f"ERROR: {ex}"
with gr.Blocks(title="McpUploadServer Client") as demo:
gr.Markdown("# McpUploadServer Client (Gradio)\n\nEnter an **image URL** and a **JSON text**. Click Upload to send them to McpUploadServer via MCP.")
image_url = gr.Textbox(label="Image URL", placeholder="https://example.com/image.png")
json_text = gr.Textbox(label="JSON text", lines=12, placeholder='{"Category":"portrait", ... }')
upload_btn = gr.Button("Upload")
result = gr.Textbox(label="Result", lines=12)
upload_btn.click(fn=mcp_upload, inputs=[image_url, json_text], outputs=[result])
if __name__ == "__main__":
launch_kwargs = {
"server_port": int(os.environ.get("PORT", "7860")),
}
# NOTE: Setting server_name="0.0.0.0" can cause Gradio's internal startup check
# (GET /gradio_api/startup-events) to hang locally because it tries to connect
# to http://0.0.0.0:PORT, which isn't a routable address.
# HuggingFace Spaces typically sets GRADIO_SERVER_NAME=0.0.0.0 for you.
server_name = os.environ.get("GRADIO_SERVER_NAME")
if not server_name:
# Common HuggingFace Spaces environment variables. If we detect Spaces and the
# host isn't explicitly set, bind to 0.0.0.0 so the reverse proxy can reach us.
is_spaces = any(
os.environ.get(k)
for k in (
"SPACE_ID",
"SPACE_REPO_NAME",
"SPACE_AUTHOR_NAME",
"HF_SPACE_ID",
)
)
if is_spaces:
server_name = "0.0.0.0"
if server_name:
launch_kwargs["server_name"] = server_name
demo.launch(**launch_kwargs,mcp_server=True)
|