package.json•1.58 kB
{
"name": "mcp-server-custom-tools",
"version": "1.0.0",
"description": "Custom MCP Server with AI agent tools: websearch, webfetch, and type conversion",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-tools",
"websearch",
"webfetch",
"type-conversion",
"cursor-ai",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"cheerio": "^1.0.0",
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"dotenv": "^16.4.7",
"js-yaml": "^4.1.0",
"xml2js": "^0.6.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0.0"
}
}