Skip to main content
Glama

MCP Search Server

by Nghiauet
console.py813 B
""" Centralized console configuration for MCP Agent. This module provides shared console instances for consistent output handling: - console: Main console for general output - error_console: Error console for application errors (writes to stderr) - server_console: Special console for MCP server output """ from rich.console import Console # Main console for general output console = Console( color_system="auto", ) # Error console for application errors error_console = Console( stderr=True, style="bold red", ) # Special console for MCP server output # This could have custom styling to distinguish server messages server_console = Console( # Not stderr since we want to maintain output ordering with other messages style="dim blue", # Or whatever style makes server output distinct )

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/Nghiauet/mcp-agent'

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