MCP Server Firecrawl

{ "name": "@modelcontextprotocol/mcp-server-firecrawl", "version": "1.0.0", "description": "MCP server for web scraping, content searching, and site mapping using the Firecrawl API", "keywords": [ "mcp", "model-context-protocol", "web-scraping", "search", "crawling", "site-mapping", "data-extraction", "firecrawl", "ai", "server" ], "homepage": "https://github.com/Msparihar/mcp-server-firecrawl#readme", "bugs": { "url": "https://github.com/Msparihar/mcp-server-firecrawl/issues" }, "repository": { "type": "git", "url": "git+https://github.com/Msparihar/mcp-server-firecrawl.git" }, "license": "MIT", "author": "Msparihar", "type": "module", "main": "build/index.js", "types": "./build/index.d.ts", "bin": { "mcp-server-firecrawl": "build/index.js" }, "directories": { "doc": "docs", "example": "examples", "test": "tests" }, "files": [ "build", "README.md", "LICENSE", "docs", "CONTRIBUTING.md", "CODE_OF_CONDUCT.md" ], "scripts": { "build": "tsc", "start": "node build/index.js", "dev": "tsc --watch", "test": "jest", "lint": "eslint . --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.4.1", "@types/node": "^22.13.1", "axios": "^1.7.9" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/jest": "^29.5.11", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "cross-env": "^7.0.3", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "jest": "^29.7.0", "prettier": "^3.2.5", "ts-jest": "^29.1.2", "typescript": "^5.7.3" }, "engines": { "node": ">=18" } }