TypeSafe MCP for VS Code
io.github.renwang-huang/typesafe-mcp
Host-neutral MCP bridge for TypeSafe AI Jev judgments with typed review, routing, and gate tools.
client:VS Code
transport:stdio
runtime:pypi
Install TypeSafe MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "typesafe-api-key",
"description": "TYPESAFE_API_KEY",
"password": true
}
],
"servers": {
"typesafe-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"typesafe-mcp"
],
"env": {
"TYPESAFE_API_KEY": "${input:typesafe-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