UNPKG

@civic/auth-mcp

Version:

Civic Auth integration for MCP servers

93 lines (92 loc) 2.09 kB
{ "name": "@civic/auth-mcp", "version": "0.3.1", "description": "Civic Auth integration for MCP servers", "keywords": [ "mcp", "model-context-protocol", "civic", "auth", "authentication", "oauth", "civic-auth" ], "homepage": "https://civic.com", "bugs": { "url": "https://github.com/civicteam/auth-mcp/issues" }, "repository": { "type": "git", "url": "git+https://github.com/civicteam/auth-mcp.git", "directory": "library" }, "license": "MIT", "author": { "name": "Civic Technologies Inc.", "email": "support@civic.com", "url": "https://www.civic.com" }, "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "files": [ "dist", "README.md", "LICENSE" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./client": { "types": "./dist/client/index.d.ts", "import": "./dist/client/index.js", "require": "./dist/client/index.cjs" } }, "engines": { "node": ">=20.0.0" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest", "typecheck": "tsc --noEmit", "lint": "biome check --write src/", "lint:check": "biome check src/" }, "dependencies": { "escape-html": "^1.0.3", "jose": "^6.0.11" }, "devDependencies": { "@modelcontextprotocol/sdk": "^1.26.0", "@types/escape-html": "^1.0.4", "@types/express": "^5.0.3", "@types/node": "^24.0.7", "@types/supertest": "^6.0.3", "@vitest/coverage-v8": "^4.1.2", "express": "^5.2.1", "supertest": "^7.1.1", "tsup": "^8.5.0", "typescript": "^5.8.3", "vite": "7.3.1", "vitest": "^4.1.2" }, "peerDependencies": { "@modelcontextprotocol/sdk": "^1.26.0", "express": "^4.17.0 || ^5.0.0" }, "peerDependenciesMeta": { "express": { "optional": true } }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }