Cosmic Correlation Engine for VS Code
io.github.odinbot33/cce-mcp-server
AI Agent Astrology — natal charts, transits, cosmic weather, and forecasts for AI agents.
client:VS Code
transport:stdio
runtime:npm
Install Cosmic Correlation Engine in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "supabase-url",
"description": "SUPABASE_URL",
"password": true
},
{
"type": "promptString",
"id": "supabase-service-role-key",
"description": "SUPABASE_SERVICE_ROLE_KEY",
"password": true
}
],
"servers": {
"cce-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"cce-mcp-server"
],
"env": {
"SUPABASE_URL": "${input:supabase-url}",
"SUPABASE_SERVICE_ROLE_KEY": "${input:supabase-service-role-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs