mcp factcheck for VS Code
io.github.carlisia/mcp-factcheck
An MCP server that validates content against MCP specification using semantic search and AI
client:VS Code
transport:stdio
runtime:oci
Install mcp factcheck in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
}
],
"servers": {
"mcp-factcheck": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/carlisia/mcp-factcheck:v1.0.0"
],
"env": {
"OPENAI_API_KEY": "${input:openai-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