Skip to main content
Glama

Server Details

India's financial MCP — Indian cards, loans, FDs, MFs; EMI/SIP/tax calcs; NSE/BSE quotes; RAG.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 12 of 12 tools scored. Lowest: 3.4/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: calculations, comparisons, product search, and explanations. No two tools overlap in functionality (e.g., calculate_cagr vs calculate_emi are clearly different, and find_best_fd vs find_best_card_for_spend target different products).

Naming Consistency5/5

All tool names follow consistent snake_case verb_noun pattern (calculate_, find_best_, search_, get_, explain_, compare_). No mixing of styles or ambiguous verbs.

Tool Count5/5

12 tools cover a comprehensive set of personal finance operations without being overwhelming. The number is well-scoped for an advisory assistant covering calculations, product search, comparisons, and explanations.

Completeness4/5

The tool set covers core financial calculations (CAGR, EMI, SIP, FD, tax), product search and details, comparisons, and concept explanations. Minor gaps exist (e.g., no direct insurance calculation tool, but search covers insurance products), but overall it's well-rounded for typical user queries.

Available Tools

12 tools
calculate_cagrInspect

Calculate the Compound Annual Growth Rate (CAGR) of an investment.

    Args:
        initial_value: Initial investment in rupees.
        final_value: Final value in rupees.
        years: Holding period in years.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
yearsYes
final_valueYes
initial_valueYes
calculate_emiInspect

Calculate EMI for a loan with year-by-year amortisation schedule.

    Args:
        principal: Loan amount in rupees.
        annual_rate: Annual interest rate as a percentage (e.g. 10.5 for 10.5%).
        tenure_months: Loan tenure in months.

    Returns:
        Monthly EMI, total interest, total payment, and amortisation schedule.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
principalYes
annual_rateYes
tenure_monthsYes
calculate_fd_maturityInspect

Calculate FD maturity amount with compounding.

    Args:
        deposit_amount: Principal deposit in rupees.
        annual_rate: Annual interest rate as a percentage.
        years: FD tenure in years (e.g. 1.5 for 18 months).
        compounding: One of 'monthly', 'quarterly', 'half_yearly', 'yearly'.
                     Most Indian FDs compound quarterly.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
yearsYes
annual_rateYes
compoundingNoquarterly
deposit_amountYes
calculate_indian_income_taxInspect

Compute Indian income tax for FY 2025-26 under old or new regime.

    Args:
        annual_income: Gross annual income in rupees.
        regime: 'new' (default) or 'old'.
        deductions_80c: Section 80C deductions in rupees (max ₹1,50,000, old regime only).
        deductions_80d: Section 80D health-insurance premium (old regime only).
        hra_exemption: HRA exemption amount (old regime only).

    Returns:
        Slab breakdown, total tax, effective rate, regime comparison.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
regimeNonew
annual_incomeYes
hra_exemptionNo
deductions_80cNo
deductions_80dNo
calculate_sipInspect

Calculate future value of a Systematic Investment Plan (SIP).

    Args:
        monthly_amount: Monthly SIP contribution in rupees.
        annual_return_pct: Expected annual return (e.g. 12 for 12%).
        years: Investment horizon in years.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
yearsYes
monthly_amountYes
annual_return_pctYes
compare_productsInspect

Side-by-side compare 2-4 products of the same category.

    Args:
        product_slugs: List of 2-4 product slugs. All must be in the same
                       category (e.g. all credit cards, or all FDs).

    Returns:
        A markdown comparison table highlighting feature differences.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
product_slugsYes
explain_financial_conceptInspect

Answer financial questions using FinMall.AI's hybrid knowledge base.

    Searches across product brochures, regulatory guides, calculators help,
    and live product database using BM25 + semantic + product DB search
    fused with Reciprocal Rank Fusion. Best for explainers like:
    'what is a critical illness rider?', 'how does APR work?',
    'difference between ELSS and PPF?'.

    Args:
        query: The financial question or concept to explain.
        institution: Optional — narrow search to one institution (e.g. 'hdfc-bank').
    
ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
institutionNo
find_best_card_for_spendInspect

Recommend Indian credit cards based on spending pattern.

    Args:
        monthly_spend: Total monthly card spend in rupees.
        primary_category: One of 'grocery', 'fuel', 'dining', 'travel',
                          'online_shopping', 'utilities', 'general'.
        annual_income: Annual income to filter cards by eligibility (optional).
        prefer_no_annual_fee: True to prioritise lifetime-free cards.

    Returns:
        Top 5 cards with estimated annual cashback/rewards value.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
annual_incomeNo
monthly_spendYes
primary_categoryYes
prefer_no_annual_feeNo
find_best_fdInspect

Rank Indian Fixed Deposits by net-of-tax yield for a given amount + tenure.

    Args:
        amount: Investment amount in rupees.
        years: FD tenure in years (e.g. 1.5 for 18 months).
        is_senior_citizen: True to use senior-citizen rates (typically +0.5%).
        tax_slab_pct: Investor's income tax slab as a percentage (5/10/20/30).
                      FD interest is fully taxable; this is used for net-yield ranking.

    Returns:
        Top 5 FDs sorted by net-of-tax maturity, each showing gross & net amount.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
yearsYes
amountYes
tax_slab_pctNo
is_senior_citizenNo
get_mutual_fund_navInspect

Get the latest NAV of an Indian mutual fund by AMFI scheme code.

    Args:
        amfi_scheme_code: AMFI scheme code (e.g. '119598' for SBI Bluechip Direct).
                          Find codes at mfapi.in or amfiindia.com.

    Returns:
        Scheme name, latest NAV, NAV date, fund house, scheme type.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
amfi_scheme_codeYes
get_product_detailsInspect

Get full details of a specific product by its slug.

    Args:
        product_slug: The URL-safe identifier (e.g. 'hdfc-millennia-credit-card').
                      Get slugs from search_indian_products.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
product_slugYes
search_indian_productsInspect

Search FinMall.AI's catalog of Indian financial products.

    Args:
        product_type: One of 'credit_card', 'loan', 'deposit', 'insurance', 'investment'.
                      Omit to search across all categories.
        search_query: Free-text search (matches name + description).
                      E.g. 'cashback', 'home loan', 'HDFC'.
        min_rating: Filter to products with rating >= this value (1-5 scale).

    Returns:
        Up to 10 matching products, sorted by popularity.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
min_ratingNo
product_typeNo
search_queryNo

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources