transcode for VS Code
io.github.hiroshic9-png/transcode
Japan market intelligence — 22 MCP tools, 10 government/exchange data sources
client:VS Code
transport:stdio
runtime:npm
Install transcode in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "japan-intelligence-api-url",
"description": "JAPAN_INTELLIGENCE_API_URL",
"password": true
},
{
"type": "promptString",
"id": "ji-api-key",
"description": "JI_API_KEY",
"password": true
}
],
"servers": {
"transcode": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"transcode-mcp-server"
],
"env": {
"JAPAN_INTELLIGENCE_API_URL": "${input:japan-intelligence-api-url}",
"JI_API_KEY": "${input:ji-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs