agent-discover 1.3.5 → 1.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@
2
2
  "id": "agent-discover",
3
3
  "name": "Discover",
4
4
  "icon": "explore",
5
- "version": "1.3.2",
5
+ "version": "1.3.7",
6
6
  "description": "MCP server registry — browse, install, configure, monitor",
7
7
  "ui": "./dist/ui/app.js",
8
8
  "css": "./dist/ui/styles.css",
@@ -1478,3 +1478,152 @@ body {
1478
1478
  border-color: var(--red);
1479
1479
  color: var(--red);
1480
1480
  }
1481
+
1482
+ /* --------------------------------------------------------------------------
1483
+ Mobile Responsive (768px)
1484
+ -------------------------------------------------------------------------- */
1485
+
1486
+ @media (max-width: 768px) {
1487
+ .layout {
1488
+ flex-direction: column;
1489
+ }
1490
+ .sidebar {
1491
+ position: fixed;
1492
+ bottom: 0;
1493
+ left: 0;
1494
+ right: 0;
1495
+ top: auto;
1496
+ width: 100%;
1497
+ height: auto;
1498
+ min-height: 0;
1499
+ flex-direction: row;
1500
+ align-items: center;
1501
+ padding: 0;
1502
+ z-index: 100;
1503
+ border-right: none;
1504
+ border-top: 1px solid var(--border);
1505
+ }
1506
+ .sidebar-header {
1507
+ display: none;
1508
+ }
1509
+ .sidebar-nav {
1510
+ display: flex;
1511
+ flex-direction: row;
1512
+ flex: 1;
1513
+ gap: 0;
1514
+ padding: 0;
1515
+ justify-content: space-around;
1516
+ }
1517
+ .nav-item {
1518
+ flex-direction: column;
1519
+ gap: 2px;
1520
+ padding: 8px 4px;
1521
+ font-size: 10px;
1522
+ border-radius: 0;
1523
+ flex: 1;
1524
+ justify-content: center;
1525
+ align-items: center;
1526
+ }
1527
+ .nav-item .material-symbols-outlined {
1528
+ font-size: 20px;
1529
+ }
1530
+ .nav-item .badge {
1531
+ display: none;
1532
+ }
1533
+ .sidebar-footer {
1534
+ display: none;
1535
+ }
1536
+ .content {
1537
+ margin-left: 0;
1538
+ padding: 16px 12px 72px;
1539
+ }
1540
+ .panel-header {
1541
+ flex-wrap: wrap;
1542
+ gap: 8px;
1543
+ }
1544
+ .section-title {
1545
+ font-size: 16px;
1546
+ }
1547
+
1548
+ /* -- Tool list: stack vertically on mobile -- */
1549
+ .tool-list {
1550
+ grid-template-columns: 1fr;
1551
+ gap: 0;
1552
+ }
1553
+ .tool-name {
1554
+ white-space: normal;
1555
+ padding-top: 8px;
1556
+ border-bottom: none;
1557
+ }
1558
+ .tool-desc {
1559
+ padding-top: 2px;
1560
+ padding-bottom: 8px;
1561
+ }
1562
+
1563
+ /* -- Nav item touch targets -- */
1564
+ .nav-item {
1565
+ min-height: 48px;
1566
+ position: relative;
1567
+ }
1568
+
1569
+ .server-grid {
1570
+ grid-template-columns: 1fr;
1571
+ }
1572
+ .form-row {
1573
+ flex-direction: column;
1574
+ gap: 8px;
1575
+ }
1576
+ .form-field {
1577
+ flex: 1 1 100% !important;
1578
+ }
1579
+ .add-server-form {
1580
+ padding: 12px;
1581
+ }
1582
+ .search-bar {
1583
+ max-width: 100%;
1584
+ }
1585
+ .search-bar input {
1586
+ max-width: 100%;
1587
+ }
1588
+ .log-filters {
1589
+ flex-wrap: wrap;
1590
+ gap: 6px;
1591
+ }
1592
+ .log-filters select {
1593
+ flex: 1 1 calc(50% - 3px);
1594
+ min-width: 0;
1595
+ }
1596
+ .log-time-picker {
1597
+ flex: 1 1 100%;
1598
+ }
1599
+ .log-time-dropdown {
1600
+ left: 0;
1601
+ right: 0;
1602
+ min-width: 0;
1603
+ }
1604
+ .log-time-custom-fields {
1605
+ flex-direction: column;
1606
+ gap: 6px;
1607
+ }
1608
+ .log-filter-search-wrap {
1609
+ max-width: 100%;
1610
+ }
1611
+ .log-filter-search-wrap input {
1612
+ max-width: 100%;
1613
+ }
1614
+ .server-card-header {
1615
+ flex-wrap: wrap;
1616
+ gap: 6px;
1617
+ }
1618
+ .server-card-actions {
1619
+ width: 100%;
1620
+ justify-content: flex-end;
1621
+ }
1622
+ .empty-state {
1623
+ padding: 32px 16px;
1624
+ }
1625
+ .btn-add-server {
1626
+ font-size: 12px;
1627
+ padding: 6px 10px;
1628
+ }
1629
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-discover",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
4
4
  "mcpName": "io.github.keshrath/agent-discover",
5
5
  "description": "MCP server registry and marketplace — discover, install, activate, and manage MCP tools on demand",
6
6
  "type": "module",