stellify mcp for VS Code
io.github.mattstellisoft/stellify-mcp
Build Laravel apps through conversation. Code stored as structured JSON for surgical AI edits.
client:VS Code
transport:stdio
runtime:npm
Install stellify mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "stellify-api-url",
"description": "STELLIFY_API_URL",
"password": true
},
{
"type": "promptString",
"id": "stellify-api-token",
"description": "STELLIFY_API_TOKEN",
"password": true
}
],
"servers": {
"stellify-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@stellisoft/stellify-mcp"
],
"env": {
"STELLIFY_API_URL": "${input:stellify-api-url}",
"STELLIFY_API_TOKEN": "${input:stellify-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs