package.jsonā¢1.44 kB
{
"name": "mcp-ai-gateway",
"version": "1.5.5",
"description": "Universal MCP server enabling AI clients (Claude Desktop, etc.) to access third-party models (GPT-5, Claude Opus 4, Gemini 2.5 Pro) with intelligent model selection and custom endpoints",
"main": "build/index.js",
"bin": {
"mcp-ai-gateway": "build/index.js"
},
"type": "commonjs",
"scripts": {
"build": "tsc && chmod +x build/index.js",
"prepare": "npm run build",
"dev": "ts-node src/index.ts",
"start": "node build/index.js"
},
"keywords": [
"mcp",
"ai",
"gateway",
"openai",
"anthropic",
"llm",
"api",
"model-selection",
"chat-completion",
"claude",
"gpt",
"claude-desktop",
"third-party",
"gpt-5",
"opus-4",
"gemini"
],
"author": "MCP AI Gateway",
"license": "MIT",
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"axios": "^1.11.0",
"https-proxy-agent": "^7.0.6"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"ts-node": "^10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kinhunt/mcp-ai-gateway.git"
},
"bugs": {
"url": "https://github.com/kinhunt/mcp-ai-gateway/issues"
},
"homepage": "https://github.com/kinhunt/mcp-ai-gateway#readme"
}