
Ultra
STDIOMulti-AI model MCP server with OpenAI, Gemini integration and built-in analytics dashboard
Multi-AI model MCP server with OpenAI, Gemini integration and built-in analytics dashboard
🚀 Ultra MCP - A Model Context Protocol server that exposes OpenAI and Gemini AI models through a single MCP interface for use with Claude Code and Cursor.
This project is inspired by:
While inspired by zen-mcp-server, Ultra MCP offers several key advantages:
npx ultra-mcp
to get startednpm install -g ultra-mcp
npx ultra-mcp config
npx ultra-mcp db:stats
npx ultra-mcp dashboard
conf
library# Install globally via npm npm install -g ultra-mcp # Or run directly with npx npx -y ultra-mcp config
Set up your API keys interactively:
npx -y ultra-mcp config
This will:
# Run the MCP server npx -y ultra # Or after building locally npm run build node dist/cli.js
Ultra MCP provides several powerful commands:
config
- Interactive Configurationnpx -y ultra-mcp config
Configure API keys interactively with a user-friendly menu system.
dashboard
- Web Dashboardnpx -y ultra-mcp dashboard # Custom port npx -y ultra-mcp dashboard --port 4000 # Development mode npx -y ultra-mcp dashboard --dev
Launch the web dashboard to view usage statistics, manage configurations, and monitor AI costs.
install
- Install for Claude Codenpx -y ultra-mcp install
Automatically install Ultra MCP as an MCP server for Claude Code.
doctor
- Health Checknpx -y ultra-mcp doctor # Test connections to providers npx -y ultra-mcp doctor --test
Check installation health and test API connections.
chat
- Interactive Chatnpx -y ultra-mcp chat # Specify model and provider npx -y ultra-mcp chat -m o3-mini -p openai
Chat interactively with AI models from the command line.
db:show
- Show Database Infonpx -y ultra-mcp db:show
Display database file location and basic statistics.
db:stats
- Usage Statisticsnpx -y ultra-mcp db:stats
Show detailed usage statistics for the last 30 days including costs by provider.
db:view
- Database Viewernpx -y ultra-mcp db:view
Launch Drizzle Studio to explore the usage database interactively.
# Install Ultra MCP for Claude Code npx -y ultra-mcp install
This command will:
Add to your Claude Code settings:
{ "mcpServers": { "ultra-mcp": { "command": "npx", "args": ["-y", "ultra"] } } }
Add to your Cursor MCP settings:
{ "mcpServers": { "ultra-mcp": { "command": "npx", "args": ["-y", "ultra"], "env": { "OPENAI_API_KEY": "your-key", "GOOGLE_API_KEY": "your-key" } } } }
Ultra MCP provides powerful AI tools accessible through Claude Code and Cursor:
deep-reasoning
)Leverage advanced AI models for complex problem-solving and analysis.
investigate
)Thoroughly investigate topics with configurable depth levels.
research
)Conduct comprehensive research with multiple output formats.
list-ai-models
)View all available AI models and their configuration status.
// In Claude Code or Cursor with MCP await use_mcp_tool("ultra-mcp", "deep-reasoning", { provider: "openai", prompt: "Design a distributed caching system for microservices", reasoningEffort: "high" });
# Clone the repository git clone https://github.com/RealMikeChong/ultra-mcp cd ultra-mcp # Install dependencies npm install # Build TypeScript npm run build # Run tests npm test # Development mode with watch npm run dev # Test with MCP Inspector npx @modelcontextprotocol/inspector node dist/cli.js
Ultra MCP acts as a bridge between multiple AI model providers and MCP clients:
src/cli.ts
- CLI entry point with commandersrc/server.ts
- MCP server implementationsrc/config/
- Configuration management with schema validationsrc/handlers/
- MCP protocol handlerssrc/providers/
- Model provider implementationssrc/utils/
- Shared utilities for streaming and error handlingUltra MCP stores configuration in your system's default config directory:
~/Library/Preferences/ultra-mcp-nodejs/
~/.config/ultra-mcp/
%APPDATA%\ultra-mcp-nodejs\
You can also set API keys via environment variables:
OPENAI_API_KEY
GOOGLE_API_KEY
AZURE_API_KEY
AZURE_ENDPOINT
Note: Configuration file takes precedence over environment variables.
git checkout -b feature-name
npm test
git commit -m "Add feature"
git push origin feature-name
# Run all tests npm test # Run tests with UI npm run test:ui # Run tests with coverage npm run test:coverage
MIT License - see LICENSE file for details.
👋 Mike Chong - Building tools to amplify human potential through AI.
As one of the earliest users of GitHub Copilot (personally invited by Nat Friedman, former GitHub CEO), I've witnessed firsthand how AI-assisted development can transform the way we build software. My journey as a former engineer on Outlook iOS/Android taught me the importance of creating tools that genuinely improve people's daily lives.
Ultra MCP represents my vision of democratizing access to the best AI models, making cutting-edge AI capabilities accessible to every developer through a unified, simple interface. I believe that by removing barriers between developers and AI models, we can accelerate innovation and create a better world for everyone.
"The future belongs to those who can seamlessly orchestrate human creativity with AI capabilities."
While both projects aim to enhance AI development workflows, Ultra MCP brings unique advantages:
These features make Ultra MCP particularly suited for developers who want robust tooling with built-in cost visibility for responsible AI usage.