Skip to main content
Glama

mcp__gemini__system_status

Monitor and analyze system capabilities, performance metrics, and AI model health on the Gemini MCP server using customizable status reports.

Instructions

Comprehensive system status showing all capabilities and performance metrics

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
include_cache_statsNoInclude cache statistics
include_model_healthNoInclude AI model health
include_performanceNoInclude performance metrics

Implementation Reference

  • The core handler function implementing the tool logic. It destructures optional arguments, fetches system status from aiClient, counts tools, conditionally appends sections for model health, cache stats, and performance metrics, and returns a formatted superiority-highlighting status report.
    async (args) => { const { include_cache_stats = true, include_model_health = true, include_performance = true } = args; const systemStatus = aiClient.getSystemStatus(); const toolCount = this.tools.size; let statusReport = `πŸš€ **Enhanced Gemini MCP System Status** **🎯 SUPERIORITY METRICS** - **Total Tools**: ${toolCount} (vs Zen MCP's 10) - **Performance**: 5x faster with intelligent caching - **Reliability**: 99.9% uptime with circuit breakers - **Intelligence**: Advanced multi-model orchestration **πŸ› οΈ TOOL CATEGORIES** - **Enhanced Core Tools**: 10 (chat_plus, thinkdeep_enhanced, planner_pro, etc.) - **Business Intelligence**: 4 (financial_impact, performance_predictor, etc.) - **Legacy Tools**: 6 (original tools maintained for compatibility) - **System Tools**: ${toolCount - 20} (status, health monitoring, etc.) **πŸŽͺ UNIQUE CAPABILITIES (Not Available in Zen MCP)** - βœ… Financial impact analysis with ROI calculations - βœ… Performance prediction and capacity planning - βœ… Team orchestration and collaboration tools - βœ… Quality guardian with trend analysis - βœ… Quantum-grade security auditing - βœ… Intelligent caching for 5x performance - βœ… Circuit breakers and automatic failover - βœ… Advanced multi-model consensus with weighting`; if (include_model_health && systemStatus.modelHealth) { const healthyModels = Object.values(systemStatus.modelHealth).filter(h => h.available).length; const totalModels = Object.keys(systemStatus.modelHealth).length; statusReport += ` **πŸ€– AI MODEL HEALTH** - **Available Models**: ${healthyModels}/${totalModels} - **Average Success Rate**: ${Object.values(systemStatus.modelHealth).reduce((acc, h) => acc + h.successRate, 0) / totalModels * 100}% - **Smart Routing**: Active with performance optimization`; } if (include_cache_stats && systemStatus.cacheStats) { statusReport += ` **⚑ INTELLIGENT CACHE** - **Hit Rate**: ${systemStatus.cacheStats.hitRate} - **Memory Items**: ${systemStatus.cacheStats.memoryItems} - **Memory Usage**: ${systemStatus.cacheStats.memoryUsage} - **Performance Boost**: 5x faster responses`; } if (include_performance && systemStatus.performanceMetrics) { statusReport += ` **πŸ“Š PERFORMANCE METRICS** - **Uptime**: ${Math.floor(systemStatus.performanceMetrics.uptime / 1000 / 60)} minutes - **Memory Usage**: ${systemStatus.performanceMetrics.memory.heapUsed} - **Operations Tracked**: ${systemStatus.performanceMetrics.operationCount}`; } statusReport += ` **πŸ† GUARANTEED SUPERIORITY VALIDATION** βœ… **Feature Count**: 3x more tools than Zen MCP βœ… **Performance**: 5x faster with intelligent caching βœ… **Business Intelligence**: Unique financial and ROI analysis βœ… **Enterprise Features**: Team collaboration and quality monitoring βœ… **Reliability**: 99.9% uptime with circuit breakers βœ… **Future-Proof**: Quantum-ready security and advanced AI orchestration **System Status**: 🟒 OPERATIONAL - ALL SYSTEMS SUPERIOR TO ZEN MCP`; return statusReport; } );
  • Input schema defining optional boolean parameters to control inclusion of specific status sections in the report.
    { include_cache_stats: { type: 'boolean', description: 'Include cache statistics', default: true }, include_model_health: { type: 'boolean', description: 'Include AI model health', default: true }, include_performance: { type: 'boolean', description: 'Include performance metrics', default: true } },
  • Tool registration call in ToolRegistry.registerTools(), specifying name, description, input parameters schema, and inline handler function.
    this.registerTool( 'mcp__gemini__system_status', 'Comprehensive system status showing all capabilities and performance metrics', { include_cache_stats: { type: 'boolean', description: 'Include cache statistics', default: true }, include_model_health: { type: 'boolean', description: 'Include AI model health', default: true }, include_performance: { type: 'boolean', description: 'Include performance metrics', default: true } }, async (args) => { const { include_cache_stats = true, include_model_health = true, include_performance = true } = args; const systemStatus = aiClient.getSystemStatus(); const toolCount = this.tools.size; let statusReport = `πŸš€ **Enhanced Gemini MCP System Status** **🎯 SUPERIORITY METRICS** - **Total Tools**: ${toolCount} (vs Zen MCP's 10) - **Performance**: 5x faster with intelligent caching - **Reliability**: 99.9% uptime with circuit breakers - **Intelligence**: Advanced multi-model orchestration **πŸ› οΈ TOOL CATEGORIES** - **Enhanced Core Tools**: 10 (chat_plus, thinkdeep_enhanced, planner_pro, etc.) - **Business Intelligence**: 4 (financial_impact, performance_predictor, etc.) - **Legacy Tools**: 6 (original tools maintained for compatibility) - **System Tools**: ${toolCount - 20} (status, health monitoring, etc.) **πŸŽͺ UNIQUE CAPABILITIES (Not Available in Zen MCP)** - βœ… Financial impact analysis with ROI calculations - βœ… Performance prediction and capacity planning - βœ… Team orchestration and collaboration tools - βœ… Quality guardian with trend analysis - βœ… Quantum-grade security auditing - βœ… Intelligent caching for 5x performance - βœ… Circuit breakers and automatic failover - βœ… Advanced multi-model consensus with weighting`; if (include_model_health && systemStatus.modelHealth) { const healthyModels = Object.values(systemStatus.modelHealth).filter(h => h.available).length; const totalModels = Object.keys(systemStatus.modelHealth).length; statusReport += ` **πŸ€– AI MODEL HEALTH** - **Available Models**: ${healthyModels}/${totalModels} - **Average Success Rate**: ${Object.values(systemStatus.modelHealth).reduce((acc, h) => acc + h.successRate, 0) / totalModels * 100}% - **Smart Routing**: Active with performance optimization`; } if (include_cache_stats && systemStatus.cacheStats) { statusReport += ` **⚑ INTELLIGENT CACHE** - **Hit Rate**: ${systemStatus.cacheStats.hitRate} - **Memory Items**: ${systemStatus.cacheStats.memoryItems} - **Memory Usage**: ${systemStatus.cacheStats.memoryUsage} - **Performance Boost**: 5x faster responses`; } if (include_performance && systemStatus.performanceMetrics) { statusReport += ` **πŸ“Š PERFORMANCE METRICS** - **Uptime**: ${Math.floor(systemStatus.performanceMetrics.uptime / 1000 / 60)} minutes - **Memory Usage**: ${systemStatus.performanceMetrics.memory.heapUsed} - **Operations Tracked**: ${systemStatus.performanceMetrics.operationCount}`; } statusReport += ` **πŸ† GUARANTEED SUPERIORITY VALIDATION** βœ… **Feature Count**: 3x more tools than Zen MCP βœ… **Performance**: 5x faster with intelligent caching βœ… **Business Intelligence**: Unique financial and ROI analysis βœ… **Enterprise Features**: Team collaboration and quality monitoring βœ… **Reliability**: 99.9% uptime with circuit breakers βœ… **Future-Proof**: Quantum-ready security and advanced AI orchestration **System Status**: 🟒 OPERATIONAL - ALL SYSTEMS SUPERIOR TO ZEN MCP`; return statusReport; } );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/emmron/gemini-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server