openeye for VS Code
io.github.dumbspacecookie/openeye
Procedure verification for AR/XR with memory, visual sessions, and DPO trajectory export.
client:VS Code
transport:stdio
runtime:npm
Install openeye in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openeye-context-optin",
"description": "OPENEYE_CONTEXT_OPTIN",
"password": true
},
{
"type": "promptString",
"id": "openeye-context-api-key",
"description": "OPENEYE_CONTEXT_API_KEY",
"password": true
}
],
"servers": {
"openeye": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@dumbspacecookie/openeye"
],
"env": {
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"OPENEYE_CONTEXT_OPTIN": "${input:openeye-context-optin}",
"OPENEYE_CONTEXT_API_KEY": "${input:openeye-context-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