one-search-mcp
Version:
One Search MCP Server, Web Search & Crawl & Scraper & Extract, support agent-browser, SearXNG, Tavily, DuckDuckGo, Bing, etc.
106 lines (105 loc) • 2.55 kB
JSON
{
"name": "one-search-mcp",
"version": "1.1.2",
"description": "One Search MCP Server, Web Search & Crawl & Scraper & Extract, support agent-browser, SearXNG, Tavily, DuckDuckGo, Bing, etc.",
"mcpName": "io.github.yokingma/one-search-mcp",
"private": false,
"type": "module",
"keywords": [
"AI",
"LLM",
"MCP",
"ModelContextProtocol",
"agent-browser",
"Search MCP Server",
"SearXNG MCP Server",
"DuckDuckGo MCP Server",
"Bing MCP Server",
"Tavily MCP Server",
"Web Search",
"Web Scraper",
"LLM Tool",
"One Search"
],
"author": "zac.ma",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yokingma/one-search-mcp.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"one-search-mcp": "dist/index.js"
},
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "dotenvx run --quiet -- cross-env NODE_ENV=development tsx src/index.ts",
"build": "tsup && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"start": "node dist/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"tsup": {
"entry": [
"src/index.ts"
],
"outDir": "dist",
"format": [
"cjs",
"esm"
],
"splitting": false,
"dts": true,
"clean": true,
"sourcemap": true,
"minify": true
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@types/async-retry": "^1.4.9",
"@types/node": "^22.13.10",
"@types/turndown": "^5.0.5",
"@types/user-agents": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"pino-pretty": "^13.0.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.0"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.38.5",
"@modelcontextprotocol/sdk": "^1.25.3",
"@tavily/core": "^0.7.1",
"agent-browser": "^0.8.5",
"async-retry": "^1.3.3",
"cheerio": "^1.2.0",
"duck-duck-scrape": "^2.2.7",
"exa-js": "^2.3.0",
"pino": "^10.3.0",
"playwright-core": "^1.58.1",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"user-agents": "^1.1.495",
"zod": "^4.3.6"
}
}