package.json•1.38 kB
{
"name": "@noveum-ai/mcp-server",
"version": "1.0.4",
"description": "An MCP server that exposes OpenAPI endpoints as resources",
"license": "MIT",
"type": "module",
"main": "./dist/bundle.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Noveum/api-market-mcp-server.git"
},
"bin": {
"mcp-server-contentful": "./bin/mcp-server.js"
},
"files": [
"dist",
"modified_files.txt",
"src/lib"
],
"scripts": {
"build": "node build.js && chmod +x bin/mcp-server.js",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"watch": "tsc --watch",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"dev": "nodemon --watch src -e ts --exec 'npm run build'",
"inspect": "node -r dotenv/config ./scripts/inspect.js",
"inspect-watch": "node ./scripts/inspect-watch.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.7.4",
"openapi-types": "^12.1.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"dotenv": "^16.4.7",
"esbuild": "^0.19.9",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
}
}