MCP Server Govbox
About
Protótipo de servidor MCP em Go para utilização com LLMs na automatização de processos internos em Ruby/rake
Details
- Author
- giovanoh
- Downloads
- 145
- Categories
- Other
Jump to
- Safe and controlled execution of Rake tasks
- Support for multiple projects
- Standardized return of results
- Robust error handling
- Docker containerization for easy deployment
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
MCP Server GovboxCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Clone the repository, build using Docker (docker build -t mcp-server-govbox .) or Go (go build cmd/app/main.go), then configure the required environment variables (MCP_GOVBOX_PROJECT_PATH, MCP_SHELL_PATH, MCP_SHELL_OPTIONS) in a .env file placed in the client’s root folder. Finally, set up the MCP client (e.g., Claude Desktop) by adding the server configuration to its claude_desktop_config.json.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp server govbox": {
"mcp-server-govbox": {
"command": "docker",
"args": [
"build",
"-t",
"mcp-server-govbox",
"."
]
}
}
}
}
McpServers
{
"mcp-server-govbox": {
"command": "docker",
"args": [
"build",
"-t",
"mcp-server-govbox",
"."
]
}
}
MCP Server Govbox
Um servidor MCP (Model Context Protocol) desenvolvido para facilitar a integração entre Large Language Models (LLMs) e tarefas do Rakefile do projeto Govbox.
📋 Sobre o Projeto
Este servidor atua como uma ponte entre LLMs e comandos Rake, permitindo que modelos de linguagem executem tarefas automatizadas de forma segura e controlada. O projeto foi desenvolvido para simplificar a execução de comandos Rake, tornando-os acessíveis, sem necessidade de conhecimento prévio dos comandos específicos.
🎯 Objetivo
O principal objetivo é permitir que LLMs possam:
- Executar tarefas do Rakefile de forma programática
- Automatizar processos comuns
- Reduzir a necessidade de conhecimento específico dos comandos Rake
- Prover uma interface padronizada para execução de tarefas
🚀 Funcionalidades
- Execução segura e controlada de tarefas
- Suporte a múltiplos projetos
- Retorno padronizado de resultados
- Tratamento de erros robusto
🛠️ Tecnologias Utilizadas
- Go (Golang) para o servidor MCP
- Ruby/Rake para execução das tarefas
- Docker para containerização
⚙️ Instalação e Configuração
📦 Passo 1: Obtenção do Código
- #### Clone o repositório
git clone https://github.com/giovanoh/mcp-server-govbox.git
cd mcp-server-govbox
🔨 Passo 2: Build
- #### Usando Docker
docker build -t mcp-server-govbox .
- #### Executando localmente
go build cmd/app/main.go
🔧 Passo 3: Configuração do Server
O servidor utiliza variáveis de ambiente para sua configuração. Todas as variáveis de ambiente devem ser configuradas para o funcionamento adequado do servidor. Para começar:
```bash
cp .env.example .env
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



