agent-discover 1.3.6 → 1.3.8

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.
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "agent-discover",
3
+ "owner": {
4
+ "name": "keshrath"
5
+ },
6
+ "metadata": {
7
+ "description": "MCP server registry and marketplace with on-demand proxying.",
8
+ "version": "1.0.0"
9
+ },
10
+ "plugins": [
11
+ {
12
+ "name": "agent-discover",
13
+ "source": "./",
14
+ "description": "MCP server registry and marketplace. Discover, install, activate, and proxy stdio/HTTP MCP servers on-demand. Per-server secrets, health probes, tool-call metrics, real-time WebSocket log stream, and namespaced tool proxying. Dashboard on :3424.",
15
+ "category": "workflow",
16
+ "tags": ["mcp", "registry", "marketplace", "proxy"]
17
+ }
18
+ ]
19
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "agent-discover",
3
+ "description": "MCP server registry and marketplace. Discover, install, activate, and proxy stdio/HTTP MCP servers on-demand with namespaced tool proxying.",
4
+ "version": "1.3.7",
5
+ "author": {
6
+ "name": "keshrath"
7
+ },
8
+ "homepage": "https://github.com/keshrath/agent-discover",
9
+ "repository": "https://github.com/keshrath/agent-discover",
10
+ "license": "MIT",
11
+ "keywords": ["mcp", "registry", "marketplace", "proxy", "claude-code"]
12
+ }
package/.mcp.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "mcpServers": {
3
+ "agent-discover": {
4
+ "command": "npx",
5
+ "args": ["-y", "agent-discover@^1.3.7"]
6
+ }
7
+ }
8
+ }
@@ -2,7 +2,7 @@
2
2
  "id": "agent-discover",
3
3
  "name": "Discover",
4
4
  "icon": "explore",
5
- "version": "1.3.6",
5
+ "version": "1.3.8",
6
6
  "description": "MCP server registry — browse, install, configure, monitor",
7
7
  "ui": "./dist/ui/app.js",
8
8
  "css": "./dist/ui/styles.css",
@@ -1542,8 +1542,30 @@ body {
1542
1542
  gap: 8px;
1543
1543
  }
1544
1544
  .section-title {
1545
- font-size: 12px;
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;
1546
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
+
1547
1569
  .server-grid {
1548
1570
  grid-template-columns: 1fr;
1549
1571
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-discover",
3
- "version": "1.3.6",
3
+ "version": "1.3.8",
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",
@@ -89,6 +89,8 @@
89
89
  "files": [
90
90
  "dist/",
91
91
  "scripts/",
92
+ ".claude-plugin/",
93
+ ".mcp.json",
92
94
  "agent-desk-plugin.json",
93
95
  "README.md",
94
96
  "CHANGELOG.md",