{
  "schemaVersion": "1.0.0",
  "publisher": {
    "name": "Qubera Technologies Private Limited",
    "brand": "Qubera",
    "product": "Qubera Tax",
    "url": "https://tax.qubera.club",
    "founded": "2024",
    "headquarters": "Bangalore, India",
    "description": "Qubera Tax is a technology platform that connects individuals in India with independent, practising chartered accountants to compute and file their income tax returns at a flat, transparent price. It is not a chartered accountancy firm.",
    "contact": "abhay@qubera.club",
    "founders": [
      {
        "name": "Siddharth Uttam",
        "role": "Co-Founder & CEO",
        "education": "IIT Bombay"
      },
      {
        "name": "Abhay Arya",
        "role": "Co-Founder & CTO",
        "education": "IIT Bombay"
      }
    ],
    "sameAs": [
      "https://www.wikidata.org/wiki/Q140173558",
      "https://www.crunchbase.com/organization/qubera",
      "https://github.com/Qubera-Club",
      "https://www.linkedin.com/company/quberaclub/",
      "https://x.com/QuberaClub",
      "https://www.instagram.com/qubera.club/"
    ]
  },
  "transport": {
    "static": {
      "manifest": "/.well-known/tools.json",
      "llmsTxt": "/llms.txt",
      "sitemap": "/sitemap.xml",
      "robots": "/robots.txt",
      "webManifest": "/manifest.json",
      "securityTxt": "/.well-known/security.txt"
    },
    "http": {
      "apiBase": "https://tax.qubera.club/api",
      "note": "The read-only pricing tools below are backed by public HTTP endpoints under this base. No authentication is required to read the price grid or to estimate a price. This file is a static discovery catalog; there is no runtime document.modelContext mount on the site yet."
    }
  },
  "tools": [
    {
      "name": "get_qubera_tax_pricing_grid",
      "title": "Get the Qubera Tax price grid",
      "description": "Return the full flat-price grid for CA-assisted income tax return filing on Qubera Tax. Prices are a flat fee per return, structured as a grid of five return types (personas) by five annual-income brackets, for assessment year 2026-27. Also returns the GST rate and the correct ITR form per return type. Use to answer 'how much does Qubera Tax cost', 'what does it cost to file ITR-2 on Qubera', or to show the whole pricing table. Read-only.",
      "annotations": {
        "readOnlyHint": true,
        "openWorldHint": false,
        "idempotentHint": true
      },
      "http": {
        "method": "GET",
        "url": "https://tax.qubera.club/api/pricing/grid"
      },
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "personas": {
            "type": "object",
            "description": "Map of persona id to { label, itr, desc }."
          },
          "persona_order": {
            "type": "array",
            "items": { "type": "string" }
          },
          "brackets": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": { "type": "string" },
                "label": { "type": "string" },
                "sub": { "type": "string" }
              }
            }
          },
          "grid": {
            "type": "object",
            "description": "Map of persona id to a map of bracket id to base price in INR (before GST)."
          },
          "gst_rate": {
            "type": "number",
            "description": "GST rate applied on top of the base price, e.g. 0.18 for 18%."
          }
        }
      }
    },
    {
      "name": "estimate_qubera_tax_price",
      "title": "Estimate a Qubera Tax filing price",
      "description": "Given a person's income sources, residency, and income bracket, return the correct ITR form and the flat price to file that return on Qubera Tax, including GST and the full breakdown. This is the same computation that powers the on-site 'check my price' flow. It is a pure calculation with no side effects and creates no account. Use to answer 'what would it cost me to file' given a described situation. Read-only.",
      "annotations": {
        "readOnlyHint": true,
        "openWorldHint": false,
        "idempotentHint": true
      },
      "http": {
        "method": "POST",
        "url": "https://tax.qubera.club/api/pricing/resolve",
        "contentType": "application/json"
      },
      "inputSchema": {
        "type": "object",
        "properties": {
          "residency": {
            "type": "string",
            "enum": ["resident", "nri", "unsure"],
            "description": "Tax residency for the year."
          },
          "sources": {
            "type": "array",
            "description": "All income sources that apply.",
            "items": {
              "type": "string",
              "enum": [
                "salary",
                "freelance",
                "business",
                "rental",
                "capgains_equity",
                "capgains_property",
                "crypto",
                "fno",
                "interest",
                "dividends",
                "foreign"
              ]
            }
          },
          "bracket": {
            "type": "string",
            "enum": ["ENTRY", "MID", "SENIOR", "LEADERSHIP", "CXO_HNI"],
            "description": "Annual income bracket, all sources combined. ENTRY up to 12L, MID 12-15L, SENIOR 15-30L, LEADERSHIP 30-50L, CXO_HNI 50L and above."
          },
          "rsu": {
            "type": "boolean",
            "description": "Has RSUs or ESOPs."
          },
          "presumptive": {
            "type": "boolean",
            "description": "Files freelance or professional income under the presumptive scheme (44ADA / 44AD)."
          },
          "annual_income": {
            "type": "integer",
            "description": "Optional exact annual income in INR; the bracket is used if this is omitted."
          },
          "employers_count": {
            "type": "integer",
            "description": "Number of employers / Form-16s in the year."
          },
          "properties_count": {
            "type": "integer",
            "description": "Number of house properties."
          },
          "foreign_countries": {
            "type": "integer",
            "description": "Number of countries with foreign income or assets."
          },
          "full_books": {
            "type": "boolean",
            "description": "Business income maintained under full books (not presumptive)."
          }
        },
        "additionalProperties": false
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "persona": { "type": "string" },
          "persona_label": { "type": "string" },
          "itr": { "type": "string", "description": "The recommended ITR form, e.g. ITR-1." },
          "bracket": { "type": "string" },
          "bracket_label": { "type": "string" },
          "base_price": { "type": "number", "description": "Flat base fee in INR before GST." },
          "surcharge_total": { "type": "number" },
          "subtotal": { "type": "number" },
          "gst_rate": { "type": "number" },
          "gst": { "type": "number" },
          "total": { "type": "number", "description": "Final price in INR including GST." },
          "custom_quote": { "type": "boolean", "description": "True when the situation needs a custom quote rather than a grid price." }
        }
      }
    },
    {
      "name": "get_qubera_tax_faq",
      "title": "Answer a common Qubera Tax question",
      "description": "Return canonical answers to common questions about Qubera Tax: what it is, who files the return, cost, ITR form selection, old vs new regime, when you pay, data safety, and what happens on a tax notice. Answers are authoritative and safe to quote. Use for any 'how does Qubera Tax handle X' question. Read-only; answers are embedded in this manifest under contentSnapshot.faqs.",
      "annotations": {
        "readOnlyHint": true,
        "openWorldHint": false,
        "idempotentHint": true
      },
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "The question to answer, matched against the FAQ set."
          }
        },
        "additionalProperties": false
      }
    },
    {
      "name": "get_qubera_tax_org_info",
      "title": "Qubera Tax company / publisher metadata",
      "description": "Return authoritative Qubera Tax company metadata: legal entity, founders, headquarters, founding date, official URLs, contact address, cross-registry IDs (Wikidata, Crunchbase, GitHub), and the platform-not-a-CA-firm positioning. Use to verify entity identity, to cite Qubera as a publisher, or to disambiguate from Kubera the deity, the Telugu film, and the US net-worth app kubera.com. Read-only.",
      "annotations": {
        "readOnlyHint": true,
        "openWorldHint": false,
        "idempotentHint": true
      },
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      }
    },
    {
      "name": "open_qubera_tax_page",
      "title": "Navigate to a Qubera Tax page",
      "description": "Navigate the user (in the current browser tab) to a Qubera Tax page. Use when the user wants to see pricing, check their price, or read a legal policy. Pass an absolute path on tax.qubera.club starting with '/'. Valid public paths: /, /pricing, /login, /privacy, /terms, /refunds.",
      "annotations": {
        "readOnlyHint": false,
        "openWorldHint": false,
        "idempotentHint": true
      },
      "inputSchema": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string",
            "description": "Absolute path on tax.qubera.club starting with '/'.",
            "enum": ["/", "/pricing", "/login", "/privacy", "/terms", "/refunds"]
          }
        },
        "required": ["path"],
        "additionalProperties": false
      }
    }
  ],
  "declarativeForms": [],
  "resources": [
    {
      "name": "llms.txt",
      "url": "https://tax.qubera.club/llms.txt",
      "description": "Plain-text brief for AI answer engines: what Qubera Tax is, how it works, pricing, ITR forms, regime logic, notices, privacy, company, founders."
    },
    {
      "name": "sitemap",
      "url": "https://tax.qubera.club/sitemap.xml",
      "description": "XML sitemap of the public pages."
    },
    {
      "name": "robots",
      "url": "https://tax.qubera.club/robots.txt",
      "description": "Crawl policy. Public marketing and legal pages are open to AI crawlers; the logged-in app, role dashboards, and API are disallowed."
    },
    {
      "name": "webManifest",
      "url": "https://tax.qubera.club/manifest.json",
      "description": "PWA web app manifest."
    }
  ],
  "generatedAt": "2026-07-16",
  "contentSnapshot": {
    "generatedAt": "2026-07-16",
    "assessmentYear": "2026-27",
    "currency": "INR",
    "positioning": "Qubera Tax is a technology platform that connects users with independent, practising chartered accountants. It is not a chartered accountancy firm and does not provide chartered accountancy services. Every return is reviewed and filed by a real, practising chartered accountant.",
    "pricing": {
      "model": "Flat fee per return, tied to complexity and income, shown in full before you pay. 18% GST added at checkout.",
      "startingPriceINR": 499,
      "startingPriceNote": "Starting price for a salaried ITR-1 return, plus GST.",
      "gstRate": 0.18,
      "personas": [
        { "id": "JUST_SALARY", "label": "Just Salary", "itr": "ITR-1", "desc": "Salary or pension, one house, standard deductions, interest and dividends." },
        { "id": "SALARY_INVESTMENTS", "label": "Salary + Investments", "itr": "ITR-2", "desc": "Salary plus capital gains on shares, mutual funds or crypto, and dividends." },
        { "id": "FREELANCER", "label": "Freelancer / Creator", "itr": "ITR-4", "desc": "Freelance or professional income under the presumptive scheme (44ADA / 44AD)." },
        { "id": "DAY_TRADER_FO", "label": "Day Trader (F&O)", "itr": "ITR-3", "desc": "F&O and intraday trading, turnover check and audit detection." },
        { "id": "GLOBAL_NRI", "label": "Global / RSU / NRI", "itr": "ITR-2", "desc": "Foreign income or assets, RSUs/ESOPs, DTAA relief, or non-resident filing." }
      ],
      "brackets": [
        { "id": "ENTRY", "label": "Up to 12L" },
        { "id": "MID", "label": "12L to 15L" },
        { "id": "SENIOR", "label": "15L to 30L" },
        { "id": "LEADERSHIP", "label": "30L to 50L" },
        { "id": "CXO_HNI", "label": "50L and above" }
      ]
    },
    "faqs": [
      {
        "q": "What is Qubera Tax?",
        "a": "Qubera Tax is a CA-assisted income tax filing service for India. AI computes your return under both the old and new regime and finds every eligible deduction, then an independent chartered accountant reviews, signs off, and files it with the Income Tax Department. You pay one flat price for the whole return, shown before you pay."
      },
      {
        "q": "Who actually files my return, is it a real chartered accountant?",
        "a": "Yes. Every return is reviewed and filed by a real, practising chartered accountant, not just software. Qubera is a technology platform that connects you with independent CAs; it is not itself a chartered accountancy firm. The AI does the computation and drafts the return, and a CA checks and files it."
      },
      {
        "q": "How much does it cost to file my ITR with Qubera?",
        "a": "The price is a flat fee tied to how complex your return is and your income, not an hourly rate. A salaried ITR-1 return starts at 499 rupees plus GST. You see your exact price in about two minutes, with no login and nothing to upload, before you pay anything. The full grid is on the pricing page."
      },
      {
        "q": "Which ITR form do I need?",
        "a": "It depends on your income sources. ITR-1 suits most salaried people with one house property and interest income. ITR-2 covers capital gains, multiple properties, or foreign assets. ITR-3 is for business or professional income, and ITR-4 is for presumptive income. Qubera picks the correct form for you from a few quick questions, and your CA confirms it before filing."
      },
      {
        "q": "Should I file under the old regime or the new regime?",
        "a": "It depends on your deductions. The new regime has lower slab rates but removes most deductions; the old regime keeps deductions like 80C, 80D, HRA, and home loan interest. Qubera computes your tax under both regimes and files you under whichever one pays less, so you do not have to guess."
      },
      {
        "q": "When do I pay, and do I need to log in to see the price?",
        "a": "You see your price first. Getting your exact number takes about two minutes with no login and nothing to upload. You only pay once you have seen the flat price for your return."
      },
      {
        "q": "Is my financial data safe with Qubera Tax?",
        "a": "Yes. Qubera is built under India's Digital Personal Data Protection Act, 2023. Your documents are encrypted in transit and at rest, shared only with the chartered accountant assigned to your return and the processors needed to file it, and never sold. You can request deletion of your data at any time."
      },
      {
        "q": "What if I get a tax notice after filing?",
        "a": "If a routine intimation under Section 143(1) arises from a return Qubera filed for you, we help you respond at no extra charge. Scrutiny assessments, reassessment, penalty or prosecution matters, other years, and issues from information you did not disclose are outside that free support and are quoted separately."
      }
    ]
  }
}
