main
html 46 lines 1.37 KB
Raw
1 <html>
2 <head>
3 <title>MCP/A2A</title>
4 </head>
5
6 <body>
7 <div x-data>
8 <template x-if="$store.settings">
9 <div>
10 <nav>
11 <ul>
12 <li>
13 <a href="#section-mcp-client">
14 <img src="/public/mcp_client.svg" alt="External MCP Servers" />
15 <span>External MCP Servers</span>
16 </a>
17 </li>
18 <li>
19 <a href="#section-mcp-server">
20 <img src="/public/mcp_server.svg" alt="A0 MCP Server" />
21 <span>A0 MCP Server</span>
22 </a>
23 </li>
24 <li>
25 <a href="#section-a2a-server">
26 <img src="/public/a2a_server.svg" alt="A0 A2A Server" />
27 <span>A0 A2A Server</span>
28 </a>
29 </li>
30 </ul>
31 </nav>
32
33 <div id="section-mcp-client" class="section">
34 <x-component path="settings/mcp/mcp_client.html"></x-component>
35 </div>
36 <div id="section-mcp-server" class="section">
37 <x-component path="settings/mcp/mcp_server.html"></x-component>
38 </div>
39 <div id="section-a2a-server" class="section">
40 <x-component path="settings/a2a/a2a-server.html"></x-component>
41 </div>
42 </div>
43 </template>
44 </div>
45 </body>
46 </html>