@oevortex/ddg_search 1.1.0 → 1.1.1
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 +4 -4
- package/bin/cli.js +4 -8
- package/package.json +1 -1
- package/src/index.js +3 -3
package/README.md
CHANGED
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
<b>Run instantly with npx:</b>
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
npx -y @oevortex/ddg_search
|
|
39
|
+
npx -y @oevortex/ddg_search@latest
|
|
40
40
|
```
|
|
41
41
|
</div>
|
|
42
42
|
|
|
43
43
|
> [!TIP]
|
|
44
|
-
> This will download and run the MCP server directly without installation – perfect for quick use with AI assistants.
|
|
44
|
+
> This will download and run the latest version of the MCP server directly without installation – perfect for quick use with AI assistants.
|
|
45
45
|
|
|
46
46
|
---
|
|
47
47
|
|
|
@@ -79,7 +79,7 @@ npm start
|
|
|
79
79
|
## 🧑💻 Command Line Options
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
|
-
npx -y @oevortex/ddg_search --help
|
|
82
|
+
npx -y @oevortex/ddg_search@latest --help
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
> [!TIP]
|
|
@@ -99,7 +99,7 @@ Add the server to your MCP client configuration:
|
|
|
99
99
|
"mcpServers": {
|
|
100
100
|
"ddg-search": {
|
|
101
101
|
"command": "npx",
|
|
102
|
-
"args": ["-y", "@oevortex/ddg_search"]
|
|
102
|
+
"args": ["-y", "@oevortex/ddg_search@latest"]
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
}
|
package/bin/cli.js
CHANGED
|
@@ -14,14 +14,12 @@ async function startServer() {
|
|
|
14
14
|
const { searchToolDefinition, searchToolHandler } = await import(`${modulePath}/tools/searchTool.js`);
|
|
15
15
|
const { fetchUrlToolDefinition, fetchUrlToolHandler } = await import(`${modulePath}/tools/fetchUrlTool.js`);
|
|
16
16
|
const { metadataToolDefinition, metadataToolHandler } = await import(`${modulePath}/tools/metadataTool.js`);
|
|
17
|
-
const { feloToolDefinition, feloToolHandler } = await import(`${modulePath}/tools/feloTool.js`);
|
|
18
|
-
|
|
19
|
-
// Create the MCP server
|
|
17
|
+
const { feloToolDefinition, feloToolHandler } = await import(`${modulePath}/tools/feloTool.js`); // Create the MCP server
|
|
20
18
|
const server = new Server({
|
|
21
19
|
id: 'ddg-search-mcp',
|
|
22
20
|
name: 'DuckDuckGo & Felo AI Search MCP',
|
|
23
21
|
description: 'A Model Context Protocol server for web search using DuckDuckGo and Felo AI',
|
|
24
|
-
version: '1.1.
|
|
22
|
+
version: '1.1.1'
|
|
25
23
|
}, {
|
|
26
24
|
capabilities: {
|
|
27
25
|
tools: {}
|
|
@@ -74,9 +72,7 @@ async function startServer() {
|
|
|
74
72
|
]
|
|
75
73
|
};
|
|
76
74
|
}
|
|
77
|
-
});
|
|
78
|
-
|
|
79
|
-
// Display promotional message
|
|
75
|
+
}); // Display promotional message
|
|
80
76
|
console.error('\n\x1b[36m╔════════════════════════════════════════════════════════════╗');
|
|
81
77
|
console.error('║ ║');
|
|
82
78
|
console.error('║ \x1b[1m\x1b[31mDuckDuckGo & Felo AI Search MCP\x1b[0m\x1b[36m by \x1b[1m\x1b[33m@OEvortex\x1b[0m\x1b[36m ║');
|
|
@@ -105,7 +101,7 @@ if (helpFlag) {
|
|
|
105
101
|
DuckDuckGo & Felo AI Search MCP - A Model Context Protocol server for web search
|
|
106
102
|
|
|
107
103
|
Usage:
|
|
108
|
-
npx -y @oevortex/ddg_search [options]
|
|
104
|
+
npx -y @oevortex/ddg_search@latest [options]
|
|
109
105
|
|
|
110
106
|
Options:
|
|
111
107
|
-h, --help Show this help message
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@oevortex/ddg_search","version":"1.1.
|
|
1
|
+
{"name":"@oevortex/ddg_search","version":"1.1.1","description":"A Model Context Protocol server for web search using DuckDuckGo and Felo AI","main":"src/index.js","bin":{"ddg-search-mcp":"bin/cli.js","oevortex-ddg-search":"bin/cli.js"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","start":"node bin/cli.js","prepublishOnly":"npm run lint","lint":"echo \"No linting configured\""},"publishConfig":{"access":"public"},"keywords":["mcp","model-context-protocol","duckduckgo","felo","search","web-search","ai-search","claude","ai","llm"],"author":"OEvortex","license":"Apache-2.0","type":"module","dependencies":{"@modelcontextprotocol/sdk":"^1.9.0","axios":"^1.8.4","cheerio":"^1.0.0","jsdom":"^26.1.0","uuid":"^9.0.1"}}
|
package/src/index.js
CHANGED
|
@@ -10,10 +10,10 @@ import { feloToolDefinition, feloToolHandler } from './tools/feloTool.js';
|
|
|
10
10
|
|
|
11
11
|
// Create the MCP server
|
|
12
12
|
const server = new Server({
|
|
13
|
-
id: '
|
|
14
|
-
name: '
|
|
13
|
+
id: 'ddg-search-mcp',
|
|
14
|
+
name: 'DuckDuckGo & Felo AI Search MCP',
|
|
15
15
|
description: 'A Model Context Protocol server for web search using DuckDuckGo and Felo AI',
|
|
16
|
-
version: '1.1.
|
|
16
|
+
version: '1.1.1'
|
|
17
17
|
}, {
|
|
18
18
|
capabilities: {
|
|
19
19
|
tools: {}
|