GetBirthChart MCP for VS Code
io.github.getbirthchart-com/getbirthchart-mcp
Official MCP server for GetBirthChart astrology calculations.
client:VS Code
transport:stdio
runtime:npm
Install GetBirthChart MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "getbirthchart-api-key",
"description": "GETBIRTHCHART_API_KEY",
"password": true
}
],
"servers": {
"getbirthchart-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@getbirthchart/mcp"
],
"env": {
"GETBIRTHCHART_API_KEY": "${input:getbirthchart-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