Skip to main content
Glama

Device MCP Server

by akshitsinha
config.py734 B
from pydantic import Field from pydantic_settings import BaseSettings class Settings(BaseSettings): enable_camera: bool = Field(default=True, description="Enable camera functionality") enable_printer: bool = Field( default=True, description="Enable printer functionality" ) enable_audio: bool = Field(default=True, description="Enable audio functionality") enable_screen: bool = Field( default=True, description="Enable screen capture functionality" ) model_config = { "env_prefix": "MCP_", "case_sensitive": False, "env_file": ".env", "env_file_encoding": "utf-8", "extra": "ignore", } def get_settings() -> Settings: return Settings()

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/akshitsinha/mcp-device-server'

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