Clutter for VS Code
io.github.michaelhologram/clutter-mcp
Generate synthetic companies, documents & data via the Clutter API (e.g. to fill SharePoint).
client:VS Code
transport:stdio
runtime:npm
Install Clutter in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "clutter-api-key",
"description": "CLUTTER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "clutter-api-url",
"description": "CLUTTER_API_URL",
"password": true
}
],
"servers": {
"clutter-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"clutter-mcp"
],
"env": {
"CLUTTER_API_KEY": "${input:clutter-api-key}",
"CLUTTER_API_URL": "${input:clutter-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs