artsonia mcp for VS Code
io.github.chrischall/artsonia-mcp
Parent/fan access to Artsonia student-art portfolios, comments, and fans (AI-built).
client:VS Code
transport:stdio
runtime:npm
Install artsonia mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "artsonia-username",
"description": "ARTSONIA_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "artsonia-password",
"description": "ARTSONIA_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "artsonia-session-cache",
"description": "ARTSONIA_SESSION_CACHE",
"password": true
},
{
"type": "promptString",
"id": "artsonia-session-file",
"description": "ARTSONIA_SESSION_FILE",
"password": true
}
],
"servers": {
"artsonia-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"artsonia-mcp"
],
"env": {
"ARTSONIA_USERNAME": "${input:artsonia-username}",
"ARTSONIA_PASSWORD": "${input:artsonia-password}",
"ARTSONIA_SESSION_CACHE": "${input:artsonia-session-cache}",
"ARTSONIA_SESSION_FILE": "${input:artsonia-session-file}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs