package.json•1.8 kB
{
"name": "expressjs-mcp",
"version": "0.1.1",
"description": "Expose your Express endpoints as MCP tools with zero configuration, schema preservation, and streaming support",
"keywords": [
"express",
"mcp",
"model-context-protocol",
"api",
"tools",
"streaming",
"openapi",
"middleware"
],
"homepage": "https://github.com/bowen31337/expressjs_mcp#readme",
"repository": {
"type": "git",
"url": "https://github.com/bowen31337/expressjs_mcp.git"
},
"bugs": {
"url": "https://github.com/bowen31337/expressjs_mcp/issues"
},
"license": "MIT",
"author": {
"name": "Bowen Li",
"email": "bowen31337@gmail.com"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": ["dist/", "README.md", "LICENSE"],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts src/mcp-server.ts bin/expressjs-mcp.ts --format esm,cjs --dts",
"dev": "tsup --watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:strict": "biome check --max-diagnostics=0 .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"mcp": "node dist/bin/expressjs-mcp.js"
},
"bin": {
"expressjs-mcp": "./dist/bin/expressjs-mcp.js"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/supertest": "^6.0.3",
"supertest": "^7.0.0",
"tsup": "^8.0.2",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"commander": "^12.0.0",
"express": "^4.19.2",
"reflect-metadata": "^0.2.2",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"packageManager": "pnpm@9"
}