package.json•728 B
{
"name": "curl-mcp-server",
"version": "1.0.0",
"description": "MCP server for executing curl commands via terminal shell",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsx src/index.ts",
"test": "npm run build && echo 'Testing curl availability...' && curl --version"
},
"bin": "build/index.js",
"keywords": [
"mcp",
"curl",
"http",
"api",
"shell"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@4.9.1"
}