package.json•1.42 kB
{
"name": "websearch-mcp",
"version": "1.0.2",
"description": "A Model Context Protocol (MCP) server implementation that provides real-time web search capabilities through a simple API",
"main": "dist/index.js",
"bin": {
"websearch-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test-client": "ts-node src/test-client.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Manh La",
"url": "https://github.com/mnhlt"
},
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"axios": "^1.6.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20.10.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"keywords": [
"mcp",
"websearch",
"claude",
"ai",
"llm",
"model-context-protocol",
"search",
"web-search",
"crawler",
"anthropic",
"cursor"
],
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/mnhlt/WebSearch-MCP.git"
},
"homepage": "https://github.com/mnhlt/WebSearch-MCP",
"bugs": {
"url": "https://github.com/mnhlt/WebSearch-MCP/issues"
},
"engines": {
"node": ">=16.0.0"
}
}