package.json•1.52 kB
{
"name": "hal-mcp",
"version": "1.0.14",
"description": "HAL (HTTP API Layer) - An MCP server that provides HTTP API capabilities to Large Language Models with OpenAPI/Swagger integration",
"main": "dist/index.js",
"bin": {
"hal-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"http",
"api",
"layer",
"typescript",
"claude-desktop",
"openapi",
"swagger",
"rest-api",
"http-client",
"llm",
"ai-tools"
],
"author": "Dean Ward",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.22.0",
"yaml": "^2.3.4",
"swagger-parser": "^10.0.3"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/swagger-parser": "^4.0.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"ts-jest": "^29.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DeanWard/HAL.git"
},
"bugs": {
"url": "https://github.com/DeanWard/HAL/issues"
},
"homepage": "https://deanward.github.io/HAL/"
}