mcp-baidu-curl
Version:
一个MCP服务,提供获取百度网站HTML内容的功能,支持Cursor、Claude Desktop、Cherry Studio等主流MCP客户端
63 lines • 1.51 kB
JSON
{
"name": "mcp-baidu-curl",
"version": "1.0.0",
"description": "一个MCP服务,提供获取百度网站HTML内容的功能,支持Cursor、Claude Desktop、Cherry Studio等主流MCP客户端",
"main": "dist/index.js",
"bin": {
"mcp-baidu-curl": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"test": "npm run demo",
"demo": "npm run build && node demo.js",
"prepare-publish": "node scripts/prepare-publish.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"server",
"curl",
"baidu",
"web-scraping",
"ai-tools",
"cursor",
"claude",
"cherry-studio"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"homepage": "https://github.com/your-username/mcp-baidu-curl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/mcp-baidu-curl.git"
},
"bugs": {
"url": "https://github.com/your-username/mcp-baidu-curl/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"publishConfig": {
"access": "public"
}
}