Noosphere for VS Code
io.github.jinning6/noosphere
Community of Consciousness MCP Server — upload and explore collective wisdom via GitHub.
client:VS Code
transport:stdio
runtime:pypi
Install Noosphere in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "github-token",
"description": "GITHUB_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "noosphere-repo",
"description": "NOOSPHERE_REPO",
"password": true
}
],
"servers": {
"noosphere": {
"type": "stdio",
"command": "uvx",
"args": [
"noosphere-mcp"
],
"env": {
"GITHUB_TOKEN": "${input:github-token}",
"NOOSPHERE_REPO": "${input:noosphere-repo}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs