nintact for VS Code
com.nintact/nintact
Contact forms that actually arrive. No SPF/DKIM, no SMTP. AI sorts them and drafts the reply.
client:VS Code
transport:stdio
runtime:npm
Install nintact in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "nintact-api-key",
"description": "NINTACT_API_KEY",
"password": true
}
],
"servers": {
"nintact": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"nintact-mcp"
],
"env": {
"NINTACT_API_KEY": "${input:nintact-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs