package.jsonā¢1.71 kB
{
"name": "mcp-implementation",
"version": "1.0.0",
"description": "Complete MCP (Model Context Protocol) implementation with AI model integrations",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "echo 'No build step required for Node.js'",
"setup": "npm install && cp .env.example .env",
"health-check": "curl http://localhost:3000/health",
"docker:build": "docker build -t mcp-server .",
"docker:run": "docker run -p 3000:3000 --env-file .env mcp-server"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"chatgpt",
"claude",
"tools",
"integration"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"node-fetch": "^3.3.2",
"openai": "^5.21.0",
"ws": "^8.18.3"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/mcp-implementation.git"
},
"bugs": {
"url": "https://github.com/yourusername/mcp-implementation/issues"
},
"homepage": "https://github.com/yourusername/mcp-implementation#readme"
}