UNPKG

mcp-basic-web-crawler

Version:

A Model Context Protocol (MCP) server providing ethical web crawling and search capabilities

76 lines (75 loc) 2.08 kB
{ "name": "mcp-basic-web-crawler", "version": "1.0.0", "description": "A Model Context Protocol (MCP) server providing ethical web crawling and search capabilities", "main": "dist/index.js", "bin": { "mcp-basic-web-crawler": "dist/index.js" }, "type": "module", "scripts": { "build": "tsc", "dev": "tsx src/index.ts", "start": "node dist/index.js", "test": "vitest", "test:coverage": "vitest --coverage", "lint": "eslint src/index.ts", "lint:fix": "eslint src/index.ts --fix", "format": "prettier --write src/index.ts", "clean": "rimraf dist", "prepublishOnly": "npm run clean && npm run build", "docker:build": "docker build -t mcp-basic-web-crawler .", "docker:run": "docker run --rm -p 3000:3000 mcp-basic-web-crawler", "docker:dev": "docker-compose --profile dev up mcp-basic-web-crawler-dev", "docker:up": "docker-compose up", "docker:down": "docker-compose down" }, "keywords": [ "mcp", "model-context-protocol", "web-crawler", "web-scraper", "search", "duckduckgo", "ethical-crawling", "rate-limiting", "research-tools" ], "author": "Sumoko", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/calmren/mcp-basic-web-crawler.git" }, "bugs": { "url": "https://github.com/calmren/mcp-basic-web-crawler/issues" }, "homepage": "https://github.com/calmren/mcp-basic-web-crawler#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.0", "axios": "^1.9.0", "cheerio": "^1.0.0", "zod": "^3.25.27", "zod-to-json-schema": "^3.24.5" }, "devDependencies": { "@types/node": "^22.15.21", "@typescript-eslint/eslint-plugin": "^8.32.1", "@typescript-eslint/parser": "^8.32.1", "eslint": "^9.24.0", "prettier": "^3.5.3", "rimraf": "^6.0.1", "tsx": "^4.19.4", "typescript": "^5.8.3", "vitest": "^3.1.4", "@vitest/coverage-v8": "^3.1.4" }, "engines": { "node": ">=22.0.0" }, "files": [ "dist", "README.md", "LICENSE" ] }