- Add comprehensive documentation in botbook/ with 12 chapters - Add botapp/ Tauri desktop application - Add botdevice/ IoT device support - Add botlib/ shared library crate - Add botmodels/ Python ML models service - Add botplugin/ browser extension - Add botserver/ reorganized server code - Add bottemplates/ bot templates - Add bottest/ integration tests - Add botui/ web UI server - Add CI/CD workflows in .forgejo/workflows/ - Add AGENTS.md and PROD.md documentation - Add dependency management scripts (DEPENDENCIES.sh/ps1) - Remove legacy src/ structure and migrations - Clean up temporary and backup files
25 lines
826 B
HTML
25 lines
826 B
HTML
<link rel="stylesheet" href="/suite/vibe/mcp-panel.css" />
|
||
|
||
<!-- MCP Side Panel for Vibe -->
|
||
<div class="mcp-panel" id="vibeMcpPanel">
|
||
<div class="mcp-panel-header">
|
||
<h3>🔌 MCP Servers</h3>
|
||
<div class="mcp-panel-actions">
|
||
<button class="mcp-btn-icon" onclick="vibeMcp.refreshServers()" title="Refresh List">
|
||
🔄
|
||
</button>
|
||
<a href="/suite/sources/mcp/add" class="mcp-btn-icon" title="Add MCP Server">
|
||
➕
|
||
</a>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="mcp-list-container">
|
||
<!-- Servers will be injected here -->
|
||
<div id="mcpServerList" class="mcp-server-list">
|
||
<div class="mcp-loading">Loading servers...</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script src="/suite/js/vibe-mcp.js"></script>
|