TCG MCP for VS Code
io.github.seanlok/tcg-mcp
Pokemon TCG MCP server: PSA grading, collection management, and multi-provider pricing.
client:VS Code
transport:stdio
runtime:pypi
Install TCG MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "psa-api-token",
"description": "PSA_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "pokemontcg-api-key",
"description": "POKEMONTCG_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "pricecharting-token",
"description": "PRICECHARTING_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "tcg-db-path",
"description": "TCG_DB_PATH",
"password": true
}
],
"servers": {
"tcg-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"tcg-mcp"
],
"env": {
"PSA_API_TOKEN": "${input:psa-api-token}",
"POKEMONTCG_API_KEY": "${input:pokemontcg-api-key}",
"PRICECHARTING_TOKEN": "${input:pricecharting-token}",
"TCG_DB_PATH": "${input:tcg-db-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs