Junê for VS Code
io.github.junemind/june-mcp
Shared, cited knowledge-graph memory for agents — ask, search, remember, keep standing instructions
client:VS Code
transport:stdio
runtime:pypi
Install Junê in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "june-base-url",
"description": "JUNE_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "june-canvas",
"description": "JUNE_CANVAS",
"password": true
},
{
"type": "promptString",
"id": "june-api-key",
"description": "JUNE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "june-llm-key",
"description": "JUNE_LLM_KEY",
"password": true
},
{
"type": "promptString",
"id": "june-canvas-create",
"description": "JUNE_CANVAS_CREATE",
"password": true
},
{
"type": "promptString",
"id": "june-readonly",
"description": "JUNE_READONLY",
"password": true
},
{
"type": "promptString",
"id": "june-files-root",
"description": "JUNE_FILES_ROOT",
"password": true
},
{
"type": "promptString",
"id": "june-docs-canvas",
"description": "JUNE_DOCS_CANVAS",
"password": true
},
{
"type": "promptString",
"id": "june-docs-refresh",
"description": "JUNE_DOCS_REFRESH",
"password": true
},
{
"type": "promptString",
"id": "june-refresh-calls",
"description": "JUNE_REFRESH_CALLS",
"password": true
},
{
"type": "promptString",
"id": "june-refresh-minutes",
"description": "JUNE_REFRESH_MINUTES",
"password": true
},
{
"type": "promptString",
"id": "june-digest-chars",
"description": "JUNE_DIGEST_CHARS",
"password": true
},
{
"type": "promptString",
"id": "june-export-root",
"description": "JUNE_EXPORT_ROOT",
"password": true
}
],
"servers": {
"june-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"june-mcp"
],
"env": {
"JUNE_BASE_URL": "${input:june-base-url}",
"JUNE_CANVAS": "${input:june-canvas}",
"JUNE_API_KEY": "${input:june-api-key}",
"JUNE_LLM_KEY": "${input:june-llm-key}",
"JUNE_CANVAS_CREATE": "${input:june-canvas-create}",
"JUNE_READONLY": "${input:june-readonly}",
"JUNE_FILES_ROOT": "${input:june-files-root}",
"JUNE_DOCS_CANVAS": "${input:june-docs-canvas}",
"JUNE_DOCS_REFRESH": "${input:june-docs-refresh}",
"JUNE_REFRESH_CALLS": "${input:june-refresh-calls}",
"JUNE_REFRESH_MINUTES": "${input:june-refresh-minutes}",
"JUNE_DIGEST_CHARS": "${input:june-digest-chars}",
"JUNE_EXPORT_ROOT": "${input:june-export-root}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs