agent-search-mcp 2.1.0

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/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "agent-search-mcp",
3
+ "version": "2.1.0",
4
+ "description": "Lightweight MCP search server with free DuckDuckGo + Sogou engines, optional Brave + Tavily paid engines, deduplication, scoring, and caching",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "bin": {
8
+ "agent-search-mcp": "./dist/index.js",
9
+ "fasm": "./dist/cli.js"
10
+ },
11
+ "files": [
12
+ "dist/**",
13
+ "README.md",
14
+ "LICENSE",
15
+ "CHANGELOG.md"
16
+ ],
17
+ "engines": {
18
+ "node": ">=18"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/lennney/agent-search-mcp.git"
23
+ },
24
+ "homepage": "https://github.com/lennney/agent-search-mcp",
25
+ "bugs": {
26
+ "url": "https://github.com/lennney/agent-search-mcp/issues"
27
+ },
28
+ "license": "MIT",
29
+ "keywords": [
30
+ "mcp",
31
+ "search",
32
+ "model-context-protocol",
33
+ "ai-agent",
34
+ "duckduckgo",
35
+ "sogou",
36
+ "bing",
37
+ "baidu",
38
+ "brave",
39
+ "tavily",
40
+ "exa",
41
+ "free-search",
42
+ "multi-engine"
43
+ ],
44
+ "scripts": {
45
+ "build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
46
+ "test": "vitest run",
47
+ "test:watch": "vitest",
48
+ "watch": "tsc --watch",
49
+ "dev": "tsc && node dist/index.js",
50
+ "dev:http": "tsc && MODE=http PORT=3000 node dist/index.js",
51
+ "dev:both": "tsc && MODE=both PORT=3000 node dist/index.js",
52
+ "cli": "tsc && node dist/cli.js",
53
+ "start": "node dist/index.js",
54
+ "start:http": "MODE=http PORT=3000 node dist/index.js",
55
+ "prepublishOnly": "npm run build"
56
+ },
57
+ "dependencies": {
58
+ "@modelcontextprotocol/sdk": "^1.11.2",
59
+ "zod": "^3.25.76",
60
+ "pino": "^9.0.0",
61
+ "yaml": "^2.7.1"
62
+ },
63
+ "devDependencies": {
64
+ "@types/node": "^20.17.10",
65
+ "typescript": "^5.3.3",
66
+ "vitest": "^3.1.3"
67
+ }
68
+ }