PlayStation Network for VS Code
io.github.murzin-ml/mcp-ps-store
PlayStation Network (PSN) gaming history: playtime, trophies and purchased library.
client:VS Code
transport:stdio
runtime:pypi
Install PlayStation Network in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "psn-npsso",
"description": "PSN_NPSSO",
"password": true
},
{
"type": "promptString",
"id": "psn-store-locale",
"description": "PSN_STORE_LOCALE",
"password": true
}
],
"servers": {
"mcp-ps-store": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-ps-store"
],
"env": {
"PSN_NPSSO": "${input:psn-npsso}",
"PSN_STORE_LOCALE": "${input:psn-store-locale}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs