Formmy for VS Code
app.formmy/formmy
Run WhatsApp AI agents: manage agents, conversations, CRM contacts, orders and RAG docs.
client:VS Code
transport:stdio
runtime:npm
Install Formmy in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "formmy-secret-key",
"description": "FORMMY_SECRET_KEY",
"password": true
},
{
"type": "promptString",
"id": "formmy-api-url",
"description": "FORMMY_API_URL",
"password": true
},
{
"type": "promptString",
"id": "formmy-toolsets",
"description": "FORMMY_TOOLSETS",
"password": true
}
],
"servers": {
"formmy": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@formmy.app/mcp-server"
],
"env": {
"FORMMY_SECRET_KEY": "${input:formmy-secret-key}",
"FORMMY_API_URL": "${input:formmy-api-url}",
"FORMMY_TOOLSETS": "${input:formmy-toolsets}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs