package.json•1.18 kB
{
"name": "@akiojin/model-hub-mcp",
"version": "0.1.7",
"description": "MCP server for fetching AI models from OpenAI, Anthropic, and Google",
"main": "dist/index.js",
"type": "module",
"bin": {
"model-hub-mcp": "bin/model-hub-mcp.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"models",
"openai",
"anthropic",
"google",
"gemini",
"gpt",
"claude"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/akiojin/model-hub-mcp.git"
},
"bugs": {
"url": "https://github.com/akiojin/model-hub-mcp/issues"
},
"homepage": "https://github.com/akiojin/model-hub-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.2",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.6.2",
"typescript": "^5.8.3"
},
"files": [
"dist/**/*",
"bin/**/*",
"README.md",
"README.ja.md",
"LICENSE"
]
}