Our MCP server exposes every endpoint in the REST catalogue as a tool your assistant can call directly. Calculate charts from the chat window, without writing code.
The Model Context Protocol is an open standard that lets AI clients use external services through a common interface. Once you register our server, your assistant discovers on its own which tools exist, what parameters they expect and what they return.
https://www.astrowise.io/mcp
Authorization: Bearer ab_live_…
HTTP (streamable)
MCP access is available on the Professional and Enterprise plans. Create your key in the API panel at www.astrowise.io/api-panel and substitute it in the examples here.
Go to the API panelAdd the configuration below to your client's settings file and drop in your own key.
Add it to the config file under Settings > Developer > Edit Config.
{
"mcpServers": {
"astro-bilge": {
"type": "http",
"url": "https://www.astrowise.io/mcp",
"headers": {
"Authorization": "Bearer ab_live_xxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}
Add it with a single terminal command; the configuration is saved automatically.
claude mcp add --transport http astro-bilge https://www.astrowise.io/mcp \
--header "Authorization: Bearer ab_live_xxxxxxxxxxxxxxxxxxxxxxxx"
Create .cursor/mcp.json in your project root and paste it in.
{
"mcpServers": {
"astro-bilge": {
"type": "http",
"url": "https://www.astrowise.io/mcp",
"headers": {
"Authorization": "Bearer ab_live_xxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}
Restart the client after saving the configuration and the tools will appear in the tool list.
Every SKU in the REST catalogue is exposed as an MCP tool with the same name.
natal_chart
1 credits
Produces planet, house and aspect data from a birth date, time and location.
transits
1 credits
Returns the aspects the sky forms with the natal chart on a chosen date.
solar_return_chart
1 credits
Calculates the annual chart for the moment the Sun returns to its natal degree.
horary_chart
1 credits
Returns the horary chart for the moment of the question plus validity checks.
synastry_chart
2 credits
Extracts inter-chart aspects and house overlays between two charts.
composite_chart
2 credits
Builds a relationship chart from the midpoints of two charts.
electional_search
3 credits
Scores and ranks the most favourable moments for a purpose within a date range.
lunar_phases
3 credits
Produces a lunar cycle calendar including new moons, full moons and eclipses.
natal_interpretation
20 credits
Turns natal chart data into a sectioned, natural-language interpretation.
account_usage
Free
Returns your active plan, remaining monthly quota and credit balance.
Upgrade to Professional in the API panel, grab your key and get going with a few lines of configuration.