UNPKG

copilot-mcp-server

Version:

MCP server that integrates with GitHub Copilot to provide code assistance

47 lines (46 loc) 1.07 kB
{ "name": "copilot-mcp-server", "version": "1.0.2", "description": "MCP server that integrates with GitHub Copilot to provide code assistance", "main": "build/index.js", "type": "module", "bin": { "copilot-mcp-server": "build/index.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node build/index.js", "lint": "eslint src/**/*.ts", "test": "jest", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "github", "copilot", "ai", "code-assistance" ], "author": "Willian Paiva", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0", "@octokit/auth-app": "^7.0.1", "@octokit/rest": "^20.0.2", "dotenv": "^16.3.1", "pino": "^9.7.0", "zod": "^3.22.4" }, "devDependencies": { "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0", "eslint": "^8.54.0", "jest": "^29.7.0", "typescript": "^5.3.0" }, "engines": { "node": ">=18.0.0" } }