search-mcp-rotator 1.1.2 → 1.1.3

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.
package/README.md CHANGED
@@ -35,7 +35,7 @@ One entry covers all your configured providers.
35
35
  "type": "local",
36
36
  "command": ["npx", "-y", "search-mcp-rotator"],
37
37
  "enabled": true,
38
- "timeout": 30000
38
+ "timeout": 60000
39
39
  }
40
40
  }
41
41
  }
package/dist/setup.js CHANGED
@@ -46,9 +46,9 @@ const ProviderSelect = ({ onConfirm }) => {
46
46
  const [cursor, setCursor] = useState(0);
47
47
  const [selected, setSelected] = useState(new Set());
48
48
  useInput((input, key) => {
49
- if (key.upArrow)
49
+ if (key.upArrow || input === "k")
50
50
  setCursor(c => Math.max(0, c - 1));
51
- if (key.downArrow)
51
+ if (key.downArrow || input === "j")
52
52
  setCursor(c => Math.min(PROVIDERS.length - 1, c + 1));
53
53
  if (input === ' ') {
54
54
  setSelected(s => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "search-mcp-rotator",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Transparent API key rotation proxy for MCP search providers — Exa, Firecrawl, Tavily, Linkup, Bright Data, Olostep, Dappier, Parallel",
5
5
  "type": "module",
6
6
  "bin": {