{ "name": "web-search-mcp-server", "version": "0.3.1", "description": "MCP server for web search with full page content extraction, search summaries, and single page content extraction", "license": "MIT", "type": "module", "main": "./dist/index.js", "bin": { "web-search-mcp": "./dist/index.js" }, "scripts": { "build": "tsc && echo '✅ TypeScript compilation complete: dist/index.js'", "dev": "tsx watch src/index.ts", "start": "node ./dist/index.js", "lint": "eslint \"src/**/*.ts\"", "format": "prettier --write ." }, "keywords": [ "mcp", "web-search", "ai", "llm" ], "author": "Mark Russell", "repository": { "type": "git", "url": "https://github.com/mrkrsl/web-search-mcp.git" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.15.0", "axios": "^1.6.8", "cheerio": "^1.0.0-rc.12", "p-limit": "^6.2.0", "p-retry": "^6.2.1", "playwright": "^1.48.0", "zod": "^3.22.0" }, "devDependencies": { "@eslint/js": "^9.30.1", "@types/node": "^24.0.10", "@typescript-eslint/eslint-plugin": "^8.35.1", "@typescript-eslint/parser": "^8.35.1", "esbuild": "^0.25.5", "eslint": "^9.30.1", "prettier": "^3.2.5", "tsx": "^4.7.0", "typescript": "^5.4.5" } }