Multi-MCP / templates /index.html
Zoro-147's picture
Upload 16 files
c4070e8 verified
raw
history blame contribute delete
666 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MCP Server</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<h1>MCP Server Interaction</h1>
<div class="chat-box" id="chat-box"></div>
<form id="mcp-form">
<input type="text" id="prompt-input" placeholder="Enter your prompt..." required>
<input type="file" id="file-input">
<button type="submit">Send</button>
</form>
</div>
<script src="/static/script.js"></script>
</body>
</html>