package.jsonā¢1.76 kB
{
"name": "websets-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol server for Exa Websets API. Create, manage, and enrich collections of web entities (companies, people, papers) with automated search, enrichments, and monitoring capabilities.",
"mcpName": "io.github.exa-labs/websets-mcp-server",
"type": "module",
"module": "./src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/exa-labs/websets-mcp-server.git"
},
"bin": {
"websets-mcp-server": ".smithery/stdio/index.cjs"
},
"files": [
".smithery"
],
"keywords": [
"mcp",
"model context protocol",
"exa",
"websets",
"data enrichment",
"web scraping",
"entity extraction",
"company research",
"claude",
"ai"
],
"author": "Exa Labs",
"scripts": {
"build": "npm run build:shttp && npm run build:stdio",
"build:stdio": "smithery build src/index.ts --transport stdio -o .smithery/stdio/index.cjs && echo '#!/usr/bin/env node' | cat - .smithery/stdio/index.cjs > temp && mv temp .smithery/stdio/index.cjs && chmod +x .smithery/stdio/index.cjs",
"build:shttp": "smithery build src/index.ts --transport shttp -o .smithery/shttp/index.cjs",
"prepare": "npm run build:stdio",
"watch": "tsc --watch",
"dev": "npx @smithery/cli@latest dev",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepublishOnly": "npm run build:stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"axios": "^1.7.8",
"zod": "^3.22.4"
},
"devDependencies": {
"@smithery/cli": "^1.4.4",
"@types/node": "^20.11.24",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}