server_mcp_automacao_residencial

server_mcp_automacao_residencial

3.1

If you are the rightful owner of server_mcp_automacao_residencial and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

This project focuses on the study of MCP (Model Context Protocol) servers for home automation.

Projeto: Servidor MCP de Automação Residencial

Descrição

Projeto com foco no estudo de servidores MCP

Funcionalidades

  • Comandos via terminal para:
    • Ligar/desligar luzes
    • Ajustar temperatura
    • Trancar/destrancar portas
    • Ver status geral

Estrutura do Projeto

mcp_server/
├── server.py              # Servidor principal
├── processor/
│   ├── __init__.py        # Torna o pacote importável
│   ├── commands.py        # Processamento dos comandos
│   ├── actions/
│   │   ├── __init__.py
│   │   ├── lights.py      # Comandos de luz
│   │   ├── door.py        # Comandos de porta
│   │   └── temperature.py # Comando de temperatura
├── client.py              # Cliente para testes