apex contabil for VS Code
io.github.ogconstrutorasp/apex-contabil
Framework MCP do Apex ERP Contábil: CNAEs, jurídico, obrigações, financeiro, marketing e WhatsApp.
client:VS Code
transport:stdio
runtime:pypi
Install apex contabil in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "erp-base",
"description": "ERP_BASE",
"password": true
},
{
"type": "promptString",
"id": "erp-mcp-email",
"description": "ERP_MCP_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "erp-mcp-password",
"description": "ERP_MCP_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "supabase-url",
"description": "SUPABASE_URL",
"password": true
},
{
"type": "promptString",
"id": "supabase-anon-key",
"description": "SUPABASE_ANON_KEY",
"password": true
}
],
"servers": {
"apex-contabil": {
"type": "stdio",
"command": "uvx",
"args": [
"apex-mcp-framework"
],
"env": {
"ERP_BASE": "${input:erp-base}",
"ERP_MCP_EMAIL": "${input:erp-mcp-email}",
"ERP_MCP_PASSWORD": "${input:erp-mcp-password}",
"SUPABASE_URL": "${input:supabase-url}",
"SUPABASE_ANON_KEY": "${input:supabase-anon-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs