morningform for VS Code
io.github.contactxyz-admin/morningform
stdio MCP proxy for MorningForm — bridges Claude Code to MorningForm HTTPS MCP server.
client:VS Code
transport:stdio
runtime:npm
Install morningform in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "morningform-token",
"description": "MORNINGFORM_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "morningform-url",
"description": "MORNINGFORM_URL",
"password": true
}
],
"servers": {
"morningform": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@morningform/mcp"
],
"env": {
"MORNINGFORM_TOKEN": "${input:morningform-token}",
"MORNINGFORM_URL": "${input:morningform-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs