generalbots/botui/ui/suite/partials/vibe-mcp-panel.html
Rodrigo Rodriguez (Pragmatismo) 037db5c381 feat: Major workspace reorganization and documentation update
- 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
2026-04-19 08:14:25 -03:00

25 lines
826 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>