MCP-SLOP Adapter

{ "name": "@kortexa-ai/mcp-slop-adapter", "version": "0.3.0", "description": "MCP to SLOP adapter", "copyright": "Copyright 2025 kortexa.ai", "author": { "name": "Franci Penov", "email": "francip@kortexa.ai", "url": "https://kortexa.ai" }, "keywords": [ "mcp", "slop", "adapter", "ai", "model-context-protocol" ], "license": "MIT", "private": false, "homepage": "https://kortexa-ai.github.io/mcp-slop-adapter/", "repository": { "type": "git", "url": "git+https://github.com/kortexa-ai/mcp-slop-adapter.git" }, "type": "module", "files": [ "dist", "README.md", "LICENSE", "CONTRIBUTING.md", "CHANGELOG.md" ], "main": "./dist/main.js", "bin": { "mcp-slop-adapter": "dist/main.js" }, "publishConfig": { "registry": "https://registry.npmjs.org/" }, "scripts": { "start": "tsx src/main.ts", "dev": "nodemon --watch src --exec 'tsx' src/main.ts", "clean": "rm -rf dist dev-dist build coverage data", "lint": "eslint . --report-unused-disable-directives --no-error-on-unmatched-pattern", "lint:fix": "npm run lint -- --fix", "typecheck": "tsc -p tsconfig.app.json --noEmit", "build": "tsc -b && tsc -p tsconfig.app.json && tsc-alias -p tsconfig.app.json", "postbuild": "chmod +x dist/main.js", "validate": "npm run typecheck && npm run lint && npm run test", "coverage": "vitest run --coverage", "test": "vitest run --passWithNoTests", "test:watch": "vitest", "test:ci": "vitest run --coverage --reporter=json --outputFile=build/test-results.json", "bump": "gh workflow run 'Version Update'", "bump:to": "gh workflow run 'Version Update' --field", "postinstall": "tsx scripts/postinstall.ts", "prebuild": "tsx scripts/prebuild.ts", "prepublishOnly": "npm run validate && npm run build" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "axios": "^1.8.2", "dotenv": "^16.4.7", "fs": "^0.0.1-security", "path": "^0.12.7", "zod": "^3.24.2" }, "devDependencies": { "@types/node": "^22.13.10", "@types/semver": "^7.5.8", "@vitest/coverage-v8": "^3.0.8", "eslint": "^9.22.0", "eslint-import-resolver-typescript": "^3.8.4", "eslint-plugin-import": "^2.31.0", "globals": "^16.0.0", "jiti": "^2.4.2", "nodemon": "^3.1.9", "npm-check-updates": "^17.1.15", "tsc-alias": "^1.8.11", "tsx": "^4.19.3", "typescript": "~5.8.2", "typescript-eslint": "^8.26.1", "vitest": "^3.0.8" }, "engines": { "node": ">=18" } }