Jev MCP for VS Code
io.github.freepik-company/jev-mcp
Typed decisions with Jev / System One via OpenRouter or TypeSafe: classify, verify, rerank, decide.
client:VS Code
transport:stdio
runtime:oci
Install Jev MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openrouter-api-key",
"description": "OPENROUTER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "typesafe-api-key",
"description": "TYPESAFE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "jev-provider",
"description": "JEV_PROVIDER",
"password": true
},
{
"type": "promptString",
"id": "jev-model",
"description": "JEV_MODEL",
"password": true
}
],
"servers": {
"jev-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/freepik-company/jev-mcp:v0.3.0"
],
"env": {
"OPENROUTER_API_KEY": "${input:openrouter-api-key}",
"TYPESAFE_API_KEY": "${input:typesafe-api-key}",
"JEV_PROVIDER": "${input:jev-provider}",
"JEV_MODEL": "${input:jev-model}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs