StandardGraph for VS Code
io.github.swoopeagle/standardgraph
158,000+ K-12 education standards across 300 curriculum systems, cross-referenced via NLP.
client:VS Code
transport:stdio
runtime:pypi
Install StandardGraph in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "db-path",
"description": "DB_PATH",
"password": true
}
],
"servers": {
"standardgraph": {
"type": "stdio",
"command": "uvx",
"args": [
"standardgraph"
],
"env": {
"DB_PATH": "${input: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