one-search-mcp 1.0.3 → 1.0.4
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 +13 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,10 +22,17 @@ env SEARCH_API_KEY=YOUR_API_KEY SEARCH_API_URL=YOUR_API_URL npx -y one-search-mc
|
|
|
22
22
|
|
|
23
23
|
## Environment Variables
|
|
24
24
|
|
|
25
|
+
**Search:**
|
|
26
|
+
|
|
25
27
|
- SEARCH_PROVIDER (Optional): The search provider to use, either `searxng` or `tavily`, default is `searxng`.
|
|
26
28
|
- SEARCH_API_URL (Optional): The URL of the SearxNG API, required for `searxng`.
|
|
27
29
|
- SEARCH_API_KEY (Optional): The API key for the search provider, required for `tavily`.
|
|
28
30
|
|
|
31
|
+
**Firecrawl:**
|
|
32
|
+
|
|
33
|
+
- FIRECRAWL_API_URL (Optional): The URL of the Firecrawl API, required for `firecrawl`.
|
|
34
|
+
- FIRECRAWL_API_KEY (Optional): The API key for the Firecrawl API, required for `firecrawl` if using cloud service.
|
|
35
|
+
|
|
29
36
|
## Running on Cursor
|
|
30
37
|
|
|
31
38
|
Your `mcp.json` file will look like this:
|
|
@@ -39,7 +46,9 @@ Your `mcp.json` file will look like this:
|
|
|
39
46
|
"env": {
|
|
40
47
|
"SEARCH_PROVIDER": "searxng",
|
|
41
48
|
"SEARCH_API_URL": "http://127.0.0.1:8080",
|
|
42
|
-
"SEARCH_API_KEY": "YOUR_API_KEY"
|
|
49
|
+
"SEARCH_API_KEY": "YOUR_API_KEY",
|
|
50
|
+
"FIRECRAWL_API_URL": "http://127.0.0.1:3002",
|
|
51
|
+
"FIRECRAWL_API_KEY": "YOUR_API_KEY"
|
|
43
52
|
}
|
|
44
53
|
}
|
|
45
54
|
}
|
|
@@ -59,7 +68,9 @@ Add this to your `./codeium/windsurf/model_config.json` file:
|
|
|
59
68
|
"env": {
|
|
60
69
|
"SEARCH_PROVIDER": "searxng",
|
|
61
70
|
"SEARCH_API_URL": "http://127.0.0.1:8080",
|
|
62
|
-
"SEARCH_API_KEY": "YOUR_API_KEY"
|
|
71
|
+
"SEARCH_API_KEY": "YOUR_API_KEY",
|
|
72
|
+
"FIRECRAWL_API_URL": "http://127.0.0.1:3002",
|
|
73
|
+
"FIRECRAWL_API_KEY": "YOUR_API_KEY"
|
|
63
74
|
}
|
|
64
75
|
}
|
|
65
76
|
}
|