list_tax_settings
Retrieve all tax settings for the current company. Facilitates streamlined tax management by providing essential tax configuration details within the Norman Finance MCP Server.
Instructions
Get list of tax settings for the current company.
Returns:
List of company tax settings
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- norman_mcp/tools/taxes.py:199-212 (handler)The handler function that implements the list_tax_settings tool. It retrieves the current company's tax settings from the Norman API backend.@mcp.tool() async def list_tax_settings(ctx: Context) -> Dict[str, Any]: """ Get list of tax settings for the current company. Returns: List of company tax settings """ api = ctx.request_context.lifespan_context["api"] settings_url = urljoin(config.api_base_url, "api/v1/taxes/tax-settings/") return api._make_request("GET", settings_url)
- norman_mcp/server.py:330-330 (registration)Top-level registration of the tax tools module (including list_tax_settings) by calling register_tax_tools on the MCP server instance.register_tax_tools(server)
- norman_mcp/server.py:18-18 (registration)Import of the register_tax_tools function from the taxes module.from norman_mcp.tools.taxes import register_tax_tools