UNPKG

@1mcp/agent

Version:

One MCP server to aggregate them all - A unified Model Context Protocol server implementation

95 lines 2.39 kB
{ "name": "@1mcp/agent", "version": "0.7.0", "description": "One MCP server to aggregate them all - A unified Model Context Protocol server implementation", "keywords": [ "mcp", "mcp-server", "mcp-client", "model-context-protocol", "agent", "proxy", "server", "cli", "ai", "llm", "model-aggregation", "typescript" ], "author": "William Xu <xuzp@1mcp.app>", "homepage": "https://github.com/1mcp-app/agent", "bugs": { "url": "https://github.com/1mcp-app/agent/issues" }, "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/1mcp-app/agent.git" }, "publishConfig": { "access": "public" }, "type": "module", "bin": { "1mcp": "./build/index.js" }, "files": [ "build" ], "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,ts}": [ "eslint --fix", "prettier --write" ] }, "dependencies": { "@modelcontextprotocol/sdk": "^1.7.0", "express": "^4.21.2", "uuid": "^11.1.0", "winston": "^3.17.0", "winston-transport": "^4.9.0", "yargs": "^17.7.2", "yargs-parser": "^21.1.1", "zod": "^3.24.2" }, "devDependencies": { "@eslint/js": "^9.22.0", "@testing-library/jest-dom": "^6.6.3", "@types/express": "^5.0.0", "@types/jest": "^29.5.14", "@types/node": "^22.13.10", "@types/uuid": "^10.0.0", "@types/yargs": "^17.0.33", "@typescript-eslint/eslint-plugin": "^8.27.0", "@typescript-eslint/parser": "^8.27.0", "eslint": "^9.22.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-prettier": "^5.2.3", "globals": "^16.0.0", "husky": "^9.1.7", "jest": "^29.7.0", "jiti": "^2.4.2", "lint-staged": "^15.5.0", "prettier": "^3.5.3", "ts-jest": "^29.2.6", "ts-node": "^10.9.2", "tsc-watch": "^6.2.1", "typescript": "^5.3.3" }, "scripts": { "dev": "tsc-watch --onSuccess \"node build/index.js --config ./mcp.json\"", "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "watch": "tsc --watch", "inspector": "npx -y @modelcontextprotocol/inspector", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage" } }