@oevortex/ddg_search
Version:
A Model Context Protocol server for web search using DuckDuckGo, IAsk AI, and Monica AI
70 lines (69 loc) • 1.86 kB
JSON
{
"name": "@oevortex/ddg_search",
"version": "1.3.0",
"description": "A Model Context Protocol server for web search using DuckDuckGo, IAsk AI, and Monica AI",
"main": "src/index.js",
"module": "src/index.ts",
"exports": {
".": {
"import": "./src/index.js",
"default": "./src/index.js"
}
},
"bin": {
"ddg-search-mcp": "bin/cli.js",
"oevortex-ddg-search": "bin/cli.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=src/__tests__/utils",
"test:integration": "jest --testPathPattern=src/__tests__/mcp-integration",
"test:tools": "jest --testPathPattern=src/__tests__/tools",
"test:all": "jest --coverage --verbose",
"start": "node bin/cli.js",
"prepublishOnly": "npm run lint",
"lint": "echo \"No linting configured\"",
"build": "npx @smithery/cli build",
"dev": "npx @smithery/cli dev"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"model-context-protocol",
"duckduckgo",
"iask",
"search",
"web-search",
"ai-search",
"claude",
"ai",
"llm"
],
"author": "OEvortex",
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"axios": "^1.8.4",
"axios-cookiejar-support": "^6.0.5",
"cheerio": "^1.0.0",
"smithery": "^0.5.2",
"tough-cookie": "^6.0.0",
"turndown": "^7.2.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@jest/globals": "^29.7.0",
"@types/node": "^24.3.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}