Spaces:
Sleeping
Sleeping
File size: 14,609 Bytes
c75526e | 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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | #!/usr/bin/env python3
"""
Gradio Web Interface for OpenProblems MCP Server Tools
This module provides a visual web interface for testing and using our MCP tools
while maintaining the full MCP server functionality in parallel.
"""
import gradio as gr
import asyncio
import json
from typing import Any, Dict, List, Optional
from pathlib import Path
# Import our existing MCP server tools
from .main import (
handle_call_tool,
handle_list_tools,
handle_read_resource,
handle_list_resources
)
class OpenProblemsMCPInterface:
"""Gradio interface wrapper for OpenProblems MCP Server tools."""
def __init__(self):
self.tools = None
self.resources = None
async def initialize(self):
"""Initialize tools and resources."""
self.tools = await handle_list_tools()
self.resources = await handle_list_resources()
def check_environment(self, tools_to_check: str = "nextflow,viash,docker,java") -> str:
"""
Check if required bioinformatics tools are installed and available.
Args:
tools_to_check (str): Comma-separated list of tools to check
Returns:
str: Environment check results in JSON format
"""
tools_list = [tool.strip() for tool in tools_to_check.split(",")]
try:
result = asyncio.run(handle_call_tool("check_environment", {
"tools": tools_list
}))
return result[0].text
except Exception as e:
return f"Error: {str(e)}"
def validate_nextflow_config(self, pipeline_path: str, config_path: str = "") -> str:
"""
Validate Nextflow pipeline syntax and configuration.
Args:
pipeline_path (str): Path to the Nextflow pipeline file (.nf)
config_path (str): Optional path to nextflow.config file
Returns:
str: Validation results in JSON format
"""
args = {"pipeline_path": pipeline_path}
if config_path:
args["config_path"] = config_path
try:
result = asyncio.run(handle_call_tool("validate_nextflow_config", args))
return result[0].text
except Exception as e:
return f"Error: {str(e)}"
def run_nextflow_workflow(
self,
workflow_name: str,
github_repo_url: str,
profile: str = "docker",
params_json: str = "{}"
) -> str:
"""
Execute a Nextflow workflow from OpenProblems repositories.
Args:
workflow_name (str): Name of the workflow (e.g., main.nf)
github_repo_url (str): GitHub repository URL
profile (str): Nextflow profile to use
params_json (str): Pipeline parameters as JSON string
Returns:
str: Execution results in JSON format
"""
try:
params = json.loads(params_json) if params_json.strip() else {}
result = asyncio.run(handle_call_tool("run_nextflow_workflow", {
"workflow_name": workflow_name,
"github_repo_url": github_repo_url,
"profile": profile,
"params": params
}))
return result[0].text
except Exception as e:
return f"Error: {str(e)}"
def analyze_nextflow_log(self, log_file_path: str) -> str:
"""
Analyze Nextflow execution logs for errors and troubleshooting insights.
Args:
log_file_path (str): Path to the .nextflow.log file
Returns:
str: Log analysis results in JSON format
"""
try:
result = asyncio.run(handle_call_tool("analyze_nextflow_log", {
"log_file_path": log_file_path
}))
return result[0].text
except Exception as e:
return f"Error: {str(e)}"
def read_file(self, file_path: str) -> str:
"""
Read and display file contents for analysis.
Args:
file_path (str): Path to the file to read
Returns:
str: File contents or error message
"""
try:
result = asyncio.run(handle_call_tool("read_file", {
"file_path": file_path
}))
return result[0].text
except Exception as e:
return f"Error: {str(e)}"
def write_file(self, file_path: str, content: str) -> str:
"""
Write content to a file.
Args:
file_path (str): Path where to write the file
content (str): Content to write
Returns:
str: Success message or error
"""
try:
result = asyncio.run(handle_call_tool("write_file", {
"file_path": file_path,
"content": content
}))
return result[0].text
except Exception as e:
return f"Error: {str(e)}"
def list_directory(self, directory_path: str, include_hidden: bool = False) -> str:
"""
List contents of a directory.
Args:
directory_path (str): Path to the directory
include_hidden (bool): Whether to include hidden files
Returns:
str: Directory listing in JSON format
"""
try:
result = asyncio.run(handle_call_tool("list_directory", {
"directory_path": directory_path,
"include_hidden": include_hidden
}))
return result[0].text
except Exception as e:
return f"Error: {str(e)}"
def get_documentation(self, doc_type: str) -> str:
"""
Get documentation resources.
Args:
doc_type (str): Type of documentation (nextflow, viash, docker, spatial-workflows)
Returns:
str: Documentation content
"""
uri_mapping = {
"nextflow": "documentation://nextflow",
"viash": "documentation://viash",
"docker": "documentation://docker",
"spatial-workflows": "templates://spatial-workflows",
"server-status": "server://status"
}
uri = uri_mapping.get(doc_type)
if not uri:
return f"Invalid documentation type. Available: {list(uri_mapping.keys())}"
try:
result = asyncio.run(handle_read_resource(uri))
return result
except Exception as e:
return f"Error: {str(e)}"
def create_gradio_interface():
"""Create the Gradio interface for OpenProblems MCP Server."""
mcp_interface = OpenProblemsMCPInterface()
with gr.Blocks(
title="OpenProblems Spatial Transcriptomics MCP Server",
theme=gr.themes.Soft(),
css="""
.gradio-container { max-width: 1200px; margin: auto; }
.tool-section { border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; margin: 10px 0; }
"""
) as demo:
gr.Markdown("""
# 𧬠OpenProblems Spatial Transcriptomics MCP Server
**Visual interface for testing MCP tools and accessing documentation resources.**
This interface provides access to the same tools available through the MCP protocol,
allowing you to test functionality before integrating with AI agents like Continue.dev.
""")
with gr.Tabs():
# Environment Tools Tab
with gr.Tab("π§ Environment & Validation"):
gr.Markdown("### Environment Validation")
with gr.Row():
tools_input = gr.Textbox(
value="nextflow,viash,docker,java",
label="Tools to Check",
placeholder="Comma-separated list of tools"
)
check_btn = gr.Button("Check Environment", variant="primary")
env_output = gr.JSON(label="Environment Check Results")
check_btn.click(mcp_interface.check_environment, tools_input, env_output)
gr.Markdown("### Nextflow Configuration Validation")
with gr.Row():
pipeline_path = gr.Textbox(label="Pipeline Path", placeholder="path/to/main.nf")
config_path = gr.Textbox(label="Config Path (optional)", placeholder="path/to/nextflow.config")
validate_btn = gr.Button("Validate Configuration", variant="primary")
validate_output = gr.JSON(label="Validation Results")
validate_btn.click(
mcp_interface.validate_nextflow_config,
[pipeline_path, config_path],
validate_output
)
# Workflow Execution Tab
with gr.Tab("β‘ Workflow Execution"):
gr.Markdown("### Execute Nextflow Workflow")
with gr.Row():
workflow_name = gr.Textbox(
label="Workflow Name",
value="main.nf",
placeholder="main.nf"
)
repo_url = gr.Textbox(
label="GitHub Repository URL",
placeholder="https://github.com/openproblems-bio/task_spatial_decomposition"
)
with gr.Row():
profile = gr.Dropdown(
choices=["docker", "singularity", "conda", "test"],
value="docker",
label="Profile"
)
params_json = gr.Textbox(
label="Parameters (JSON)",
value='{"input": "data.h5ad", "output": "results/"}',
placeholder='{"key": "value"}'
)
run_btn = gr.Button("Run Workflow", variant="primary")
workflow_output = gr.JSON(label="Workflow Execution Results")
run_btn.click(
mcp_interface.run_nextflow_workflow,
[workflow_name, repo_url, profile, params_json],
workflow_output
)
# File Management Tab
with gr.Tab("π File Management"):
with gr.Row():
with gr.Column():
gr.Markdown("### List Directory")
dir_path = gr.Textbox(label="Directory Path", value=".")
include_hidden = gr.Checkbox(label="Include Hidden Files")
list_btn = gr.Button("List Directory")
list_output = gr.JSON(label="Directory Contents")
list_btn.click(
mcp_interface.list_directory,
[dir_path, include_hidden],
list_output
)
with gr.Column():
gr.Markdown("### Read File")
read_path = gr.Textbox(label="File Path", placeholder="path/to/file.txt")
read_btn = gr.Button("Read File")
read_output = gr.Textbox(label="File Contents", lines=10)
read_btn.click(mcp_interface.read_file, read_path, read_output)
gr.Markdown("### Write File")
with gr.Row():
write_path = gr.Textbox(label="File Path", placeholder="path/to/new_file.txt")
write_content = gr.Textbox(label="Content", lines=5, placeholder="File content here...")
write_btn = gr.Button("Write File", variant="primary")
write_output = gr.Textbox(label="Write Result")
write_btn.click(
mcp_interface.write_file,
[write_path, write_content],
write_output
)
# Log Analysis Tab
with gr.Tab("π Log Analysis"):
gr.Markdown("### Nextflow Log Analysis")
log_path = gr.Textbox(
label="Log File Path",
placeholder="path/to/.nextflow.log",
value="work/.nextflow.log"
)
analyze_btn = gr.Button("Analyze Log", variant="primary")
log_output = gr.JSON(label="Log Analysis Results")
analyze_btn.click(mcp_interface.analyze_nextflow_log, log_path, log_output)
# Documentation Tab
with gr.Tab("π Documentation & Resources"):
gr.Markdown("### Access MCP Resources")
doc_type = gr.Dropdown(
choices=["nextflow", "viash", "docker", "spatial-workflows", "server-status"],
value="nextflow",
label="Documentation Type"
)
doc_btn = gr.Button("Get Documentation", variant="primary")
doc_output = gr.Textbox(label="Documentation Content", lines=20)
doc_btn.click(mcp_interface.get_documentation, doc_type, doc_output)
gr.Markdown("""
---
### π€ AI Agent Integration
To use these tools with AI agents like Continue.dev, add this to your `~/.continue/config.json`:
```json
{
"experimental": {
"modelContextProtocolServers": [
{
"name": "openproblems-spatial",
"transport": {
"type": "stdio",
"command": "python",
"args": ["-m", "mcp_server.main"],
"cwd": "/path/to/your/SpatialAI_MCP"
}
}
]
}
}
```
**π Documentation**: [Setup Guide](docs/CONTINUE_DEV_SETUP.md) | [Agent Rules](docs/AGENT_RULES.md)
""")
return demo
def launch_gradio_interface(share: bool = False, server_port: int = 7860):
"""Launch the Gradio interface."""
demo = create_gradio_interface()
print("π Starting OpenProblems MCP Server Gradio Interface...")
print(f"π± Web Interface: http://localhost:{server_port}")
print("π€ MCP Server: Use 'python -m mcp_server.main' for AI agents")
demo.launch(
share=share,
server_port=server_port,
server_name="0.0.0.0",
show_error=True,
# Note: Not setting mcp_server=True to avoid conflicts with our main MCP server
)
if __name__ == "__main__":
launch_gradio_interface()
|