Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tax-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Spring Boot application that exposes two tools for working with USD exchange rates and calculating taxes in Georgian Lari (GEL). It retrieves official exchange rates from the National Bank of Georgia (NBG) and helps compute tax liabilities based on user inputs.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / legal
87 tools for Korean law — statutes, precedents, ordinances, interpretations | MCP Server · CLI · npm
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
MCP Security Weekly
Get CVE alerts and security updates for Tax Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Spring Boot application that exposes two tools for working with USD exchange rates and calculating taxes in Georgian Lari (GEL). It retrieves official exchange rates from the National Bank of Georgia (NBG) and helps compute tax liabilities based on user inputs.
Description:
Fetches the official USD exchange rate from the National Bank of Georgia for a specific date.
Method Signature:
public double fetchUsdRate(String date)
Parameters:
date (String, required) – The target date in yyyy-MM-dd format.Example Usage:
GET https://nbg.gov.ge/gw/api/ct/monetarypolicy/currencies/?currencies=USD&date=2024-01-01
Response: Returns the official USD to GEL exchange rate rounded to 4 decimal places.
Description:
Calculates the tax amount in GEL using:
Method Signature:
public double calculateTaxValue(double incomeAmount, double currencyExchangeRate, double taxRatePercentage)
Parameters:
incomeAmount (double, required) – The income amount in USD to be converted and taxed.currencyExchangeRate (double, required) – The USD to GEL exchange rate.taxRatePercentage (double, required) – The tax rate as a percentage.Formula:
taxValue = (incomeAmount * currencyExchangeRate * taxRatePercentage) / 100
Response: Returns the calculated tax amount in GEL, rounded to 4 decimal places.
Fetch the exchange rate:
fetchUsdRate("2024-01-01") → e.g., 2.6789 GEL/USDCalculate tax:
calculateTaxValue(1000, 2.6789, 20) → 535.7800 GEL