ultra-mcp
Version:
Ultra MCP, a MCP server for using OpenAI, Gemini, and Grok Models with a single MCP interface. Supports node.js and Vercel AI SDK
81 lines • 2.32 kB
JSON
{
"name": "ultra-mcp",
"version": "0.5.0",
"main": "dist/cli.js",
"bin": {
"ultra": "dist/cli.js"
},
"files": [
"dist/",
"dist-web/",
"drizzle/"
],
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"openai",
"gemini",
"gemini-cli",
"claude-code",
"grok",
"xai"
],
"author": "Mike Chong <oss@realmikechong.com>",
"license": "MIT",
"description": "Ultra MCP, a MCP server for using OpenAI, Gemini, and Grok Models with a single MCP interface. Supports node.js and Vercel AI SDK",
"repository": {
"type": "git",
"url": "https://github.com/RealMikeChong/ultra-mcp.git"
},
"bugs": {
"url": "https://github.com/RealMikeChong/ultra-mcp/issues"
},
"homepage": "https://github.com/RealMikeChong/ultra-mcp#readme",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.34",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"better-sqlite3": "^12.2.0",
"tsup": "^8.5.0",
"typescript": "^5.7.3",
"vi-fetch": "^0.8.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@ai-sdk/azure": "^1.3.23",
"@ai-sdk/google": "^1.2.19",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/xai": "^1.1.6",
"@hono/node-server": "^1.14.4",
"@hono/trpc-server": "^0.4.0",
"@libsql/client": "^0.15.9",
"@modelcontextprotocol/sdk": "^1.13.2",
"@trpc/server": "^11.4.3",
"ai": "^4.3.16",
"chalk": "^4.1.2",
"colorette": "^2.0.20",
"commander": "^14.0.0",
"conf": "^14.0.0",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.2",
"hono": "^4.8.3",
"prompts": "^2.4.2",
"zod": "^3.25.67"
},
"scripts": {
"build": "tsup && chmod +x dist/cli.js && cp -r drizzle dist/",
"build:dashboard": "cd web && npm install && npm run build",
"build:all": "npm run build && npm run build:dashboard",
"dev": "tsup --watch",
"dev:api": "npm run build && node dist/cli.js dashboard --dev",
"build:tsc": "tsc --noEmit",
"test": "vitest run --exclude '**/e2e/**' --exclude '**/web/**'",
"test:all": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage --exclude '**/e2e/**' --exclude '**/web/**'",
"test:e2e": "vitest run src/__tests__/e2e"
}
}