{ "name": "@creedspace/mcp-server", "version": "1.1.4", "mcpName": "io.github.Creed-Space/creedspace-mcp-server", "description": "Universal MCP server for Creed Space - AI safety guardrails in 10 seconds", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "creedspace-mcp": "dist/cli.js" }, "scripts": { "build": "tsc", "dev": "tsc -w", "start": "node dist/cli.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src --ext .ts", "format": "prettier --write src/**/*.ts", "format:check": "prettier --check src/**/*.ts", "validate": "npm run lint && npm run format:check && npm run test", "prepublishOnly": "npm run validate && npm run build && test -z \"$(find dist -name '*.map' 2>/dev/null)\"", "postinstall": "node -e \"try{const f='./dist/postinstall.js';require('fs').existsSync(f)&&require(f)}catch{}\"", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "keywords": [ "mcp", "model-context-protocol", "ai-safety", "creed-space", "claude", "llm", "guardrails" ], "author": "Nell Watson", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Creed-Space/creedspace-mcp-server.git" }, "homepage": "https://www.creed.space", "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", "commander": "^12.1.0", "cors": "^2.8.5", "dotenv": "^16.4.5", "express": "^4.22.2", "express-rate-limit": "^7.4.1", "zod": "^3.24.1" }, "devDependencies": { "@eslint/js": "^9.35.0", "@types/cors": "^2.8.17", "@types/express": "^5.0.0", "@types/jest": "^29.5.14", "@types/node": "^22.18.1", "@typescript-eslint/eslint-plugin": "^8.40.0", "@typescript-eslint/parser": "^8.40.0", "ajv": "^8.20.0", "eslint": "^9.35.0", "jest": "^29.7.0", "prettier": "^3.6.2", "ts-jest": "^29.4.1", "typescript": "^5.7.3" }, "engines": { "node": ">=20.0.0" }, "files": [ "dist", "README.md" ] }