package.json•987 B
{
"name": "scim-mcp",
"version": "1.0.0",
"description": "MCP server that connects to a SCIM server",
"main": "dist/index.js",
"bin": {
"scim-mcp": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"start": "node dist/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"dev:watch": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"scim",
"mcp",
"server"
],
"author": "Limosa Digital Identity Solutions",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/limosa-io/mcp-scim.git"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.15.15",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"express": "^5.1.0"
}
}