Skip to main content
Glama

Birthstar Vedic Astrology MCP

get_transits

Get gochara — where the planets are now relative to the natal chart.

Answers "is Sade Sati running", "is Jupiter transiting well", "is today
favourable". Houses are counted from BOTH the natal Moon (the classical
reference for gochara) and the natal Lagna.

IMPORTANT: transits are computed for the chart's `as_of` date, which is the
transit_date it was created with — not today unless the chart was created
today. Pass transit_date to create_chart to ask about another date.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chart_idYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations present, the description must carry the behavioral disclosure burden. It does so well by revealing a non-obvious behavior: 'transits are computed for the chart's as_of date ... not today unless the chart was created today.' It also discloses that houses are counted from BOTH the natal Moon and natal Lagna, which is a key behavioral trait beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with a clear opening, example use cases, and a separate IMPORTANT caveat about date semantics. It is slightly longer than strictly necessary, but every sentence adds valuable information and the key caveat is front-loaded enough to be noticed before invocation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with no output schema and no annotations, the description is quite complete: it explains what the tool computes, from which references, and how date behavior works. The main missing piece is any hint about the output format or fields returned, but this is less critical for a simple chart_id-based lookup and does not undermine correct selection or invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema only documents chart_id as a required string, and schema description coverage is 0%, so the description needs to compensate. It adds some meaning by referring to 'the chart's as_of date' and directing users to create_chart, which implies chart_id identifies the natal chart of interest. However, it never explicitly describes chart_id itself, leaving part of the semantic burden on the parameter's self-evident name.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Get gochara — where the planets are now relative to the natal chart', a specific verb+resource statement that clearly identifies the tool's function. It goes further by naming the two reference frames (Moon and Lagna) and listing concrete questions the tool answers, such as 'is Sade Sati running' and 'is Jupiter transiting well', which makes it easy to distinguish from sibling get_* tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear usage context by listing example queries the tool is meant to answer ('is Sade Sati running', 'is today favourable'), which tells an agent when to invoke it. It also gives an important conditional about the as_of date and points to create_chart for other dates, but it does not explicitly name alternatives or state when not to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Every tool targets a distinct astrological subsystem — positions, houses, aspects, strengths, dashas, transits, yogas, doshas, vargas, karakas, etc. The pairs that could plausibly be confused (calculate_birth_star vs create_chart, get_current_dasha vs get_dasha_periods, get_timeline vs get_transits) are explicitly cross-referenced with guidance on when to use which, so an agent can disambiguate reliably.

Naming Consistency4/5

24 of 30 tools follow a uniform get_X pattern, and the remaining action tools (create_chart, calculate_birth_star, describe_chart, rectify_birth_time) still use verb_noun. Only health_check and server_stats break the pattern as noun-style names, and the different verbs reflect genuinely different actions rather than inconsistency.

Tool Count3/5

30 tools is on the heavy side and exceeds the comfortable range, even though Vedic astrology is a genuinely broad domain with many distinct subsystems. Some tools are meta or adjacent (get_account_status, health_check, server_stats, get_prompt_library, get_numerology) and a couple could arguably be consolidated (get_current_dasha as a mode of get_dasha_periods), but each tool does carve out a distinct purpose.

Completeness5/5

The chart lifecycle is fully covered: create_chart produces a cached handle, describe_chart inventories it, and the get_* readers retrieve every section. Timing (dashas, transits, timeline), strengths (shadbala, vimsopaka), yogas, doshas, vargas, compatibility, rectification, and even meta-concerns (account status, health) are all present with no obvious dead ends or missing operations for a computation-cache domain.

Resources