We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PixelML/reachy-mini-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
context.py•421 B
"""Application context for Reachy Mini MCP server."""
from __future__ import annotations
from dataclasses import dataclass
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from reachy_mini_mcp.config import Config
from reachy_mini_mcp.robot_manager import RobotManager
@dataclass
class AppContext:
"""Application context holding shared state."""
robot_manager: "RobotManager"
config: "Config"