UNPKG

@civic/auth-mcp

Version:

Civic Auth integration for MCP servers

74 lines (73 loc) 1.9 kB
{ "name": "@civic/auth-mcp", "version": "0.2.0", "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 .", "lint:check": "biome check ." }, "dependencies": { "@modelcontextprotocol/sdk": "^1.12.0", "escape-html": "^1.0.3", "express": "^4.18.2", "jose": "^5.2.3" }, "devDependencies": { "@types/escape-html": "^1.0.4", "@types/express": "^4.17.21", "@types/node": "^22.5.4", "@types/supertest": "^6.0.3", "@vitest/coverage-v8": "^3.1.4", "supertest": "^7.1.1", "tsup": "^8.0.1", "typescript": "^5.3.3", "vitest": "^3.1.4" }, "peerDependencies": { "@modelcontextprotocol/sdk": "^1.12.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }