@naotaka/mcp-har-server
Version:
An MCP server that parses HAR files and returns requests in a simplified format
86 lines (85 loc) • 2.48 kB
JSON
{
"name": "@naotaka/mcp-har-server",
"version": "0.1.1",
"author": "Naotaka Mizuki",
"license": "MIT",
"description": "An MCP server that parses HAR files and returns requests in a simplified format",
"keywords": [
"mcp",
"model-context-protocol",
"har",
"http-archive",
"http",
"request",
"response",
"parser",
"analyzer",
"ai",
"claude",
"assistant",
"network",
"debugging",
"web",
"api",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/naotaka3/mcp-har-server.git"
},
"bugs": {
"url": "https://github.com/naotaka3/mcp-har-server/issues"
},
"homepage": "https://github.com/naotaka3/mcp-har-server#readme",
"type": "module",
"bin": {
"mcp-har-server": "./build/index.js",
"mcp-har-cli": "./build/cli.js",
"mcp-har-sse": "./build/sse.js"
},
"files": [
"build"
],
"scripts": {
"dev": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'tsx src/index.ts'",
"dev:sse": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'tsx src/sse.ts'",
"run:cli": "tsx src/cli.ts",
"build": "tsx build.ts",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npm run prepare && npx @modelcontextprotocol/inspector build/index.js",
"test": "npm run lint && npm run format:check && npm run test:unit && npm run test:type",
"test:unit": "vitest run",
"test:type": "tsc --noEmit && tsc --noEmit --project tsconfig.spec.json",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,json,md}\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.12.3",
"@types/cors": "2.8.19",
"cors": "2.8.5",
"express": "5.1.0",
"zod-to-json-schema": "3.24.5"
},
"devDependencies": {
"@eslint/js": "9.29.0",
"@types/express": "5.0.3",
"@types/node": "24.0.1",
"@vitest/coverage-v8": "3.2.3",
"esbuild": "0.25.5",
"eslint": "9.29.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-prettier": "5.4.1",
"globals": "16.2.0",
"nodemon": "3.1.10",
"prettier": "3.5.3",
"tsx": "4.20.3",
"typescript": "5.8.3",
"typescript-eslint": "8.34.0",
"vitest": "3.2.3"
}
}