MCP Utility Server

by Nekzus
Verified
MIT License
2,969
  • Apple
  • Linux
{ "name": "@nekzus/mcp-server", "version": "0.0.0-development", "description": "Personal MCP Server implementation providing extensible utility functions and tools for development and testing purposes", "type": "module", "bin": { "mcp-server-nekzus": "dist/index.js" }, "files": [ "dist" ], "scripts": { "build": "tsc && shx chmod +x dist/*.js", "prepare": "npm run build", "dev": "tsx watch index.ts", "start": "node dist/index.js", "test": "jest --passWithNoTests", "format": "biome format --write .", "lint": "biome lint --write .", "check": "biome check --apply .", "commit": "git-cz", "semantic-release": "semantic-release --branches main", "watch": "tsc --watch" }, "keywords": [ "mcp", "server", "typescript", "greetings", "cards", "games" ], "author": "nekzus", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Nekzus/mcp-server.git" }, "bugs": { "url": "https://github.com/Nekzus/mcp-server/issues" }, "homepage": "https://github.com/Nekzus/mcp-server#readme", "dependencies": { "@modelcontextprotocol/sdk": "1.7.0", "qrcode": "1.5.4" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/github": "11.0.1", "@semantic-release/npm": "12.0.1", "@semantic-release/release-notes-generator": "14.0.3", "@types/jest": "29.5.14", "@types/node": "22.13.13", "@types/qrcode": "1.5.5", "cz-conventional-changelog": "3.3.0", "jest": "29.7.0", "semantic-release": "24.2.3", "shx": "0.4.0", "ts-jest": "29.3.0", "tsx": "4.19.3", "typescript": "5.8.2" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "publishConfig": { "access": "public" } }