Skip to main content
Glama
norman-finance

Norman Finance MCP Server

Official

get_vat_next_report

Retrieve VAT amount data for the upcoming report period using the Norman Finance MCP Server. Streamline tax preparation and financial planning with accurate VAT insights.

Instructions

Get the VAT amount for the next report period. Returns: VAT next report amount data

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'get_vat_next_report' tool. It retrieves the VAT amount for the next report period by making an API request using the company's ID.
    @mcp.tool() async def get_vat_next_report(ctx: Context) -> Dict[str, Any]: """ Get the VAT amount for the next report period. Returns: VAT next report amount data """ api = ctx.request_context.lifespan_context["api"] company_id = api.company_id if not company_id: return {"error": "No company available. Please authenticate first."} vat_url = urljoin( config.api_base_url, f"api/v1/companies/{company_id}/vat-next-report-amount/" ) return api._make_request("GET", vat_url)
  • Call to register_tax_tools which registers the get_vat_next_report tool along with other tax tools on the MCP server.
    register_tax_tools(server)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/norman-finance/norman-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server