Integrations
Supports configuration through .env files to store and manage Norman Finance credentials and environment settings.
Allows importing receipts from Cloudflare into the Norman Finance system, demonstrated in the Gmail receipts example.
Provides access to installation from source via GitHub repository, with examples linking to attachments hosted on GitHub.
Norman Finance MCP Server
A Model Context Protocol (MCP) server that allows Large Language Models (LLMs) to interact with the basic Norman Finance API implementation. This server provides access to accounting, invoices, companies, clients, taxes, and more through a standardized protocol.
Features
- 🔐 Authentication: Securely authenticate with the Norman Finance API
- 💼 Company Management: View and update company details
- 📊 Accounting: Access and manage transactions
- 📝 (e-)Invoicing: Create, view, send, and manage compliant invoices. For example, create a recurring invoice based on the contract data
- 👥 Client Management: Create and manage clients
- 💰 Taxes: View tax information and reports, generate official Finanzamt PDF previews and file taxes
- 📄 Documents: Upload and manage attachments
Use Case Examples with Claude Desktop
Here are some examples of how to use Norman Finance MCP with Claude Desktop:
1. Creating Transactions Using Gmail Receipts
2. Managing Overdue Invoices
Prerequisites
Before using this MCP server, you need to:
- Create an account on Norman Finance (or dev.norman.finance for the sandbox environment)
- Have your email and password ready for authentication
Installation
Using Claude Desktop with the Norman MCP Server (via PyPI)
To run the Norman Finance MCP server with Claude Desktop, follow these steps:
1. Install uv
Follow the instructions here: Installing uv
2. Download and Configure Claude Desktop
- Download Claude Desktop.
- Launch Claude and navigate to: Settings > Developer > Edit Config.
- Update your
claude_desktop_config.json
file with the following configuration:
Installing from Source
If you prefer to run the MCP server from source:
Then update your claude_desktop_config.json file to point to the Python module directly:
Configuration
Environment Variables
The server requires authentication with your Norman Finance credentials. You can provide these through environment variables:
Create a .env
file with:
Command Line Arguments
Alternatively, you can provide the credentials through command line arguments:
Usage
With Claude or Other MCP-Compatible LLMs
- Start the MCP server:
- Add the server to your Claude configuration using stdio protocol.
Integration with Claude Desktop
You can install the server using the MCP CLI:
Configure your Norman Finance credentials when prompted.
Direct Execution
You can also run the server directly with:
Resources
This MCP server exposes the following resources:
company://current
- Details about your current companytransactions://list/{page}/{page_size}
- List of transactions with paginationinvoices://list/{page}/{page_size}
- List of invoices with paginationclients://list/{page}/{page_size}
- List of clients with paginationtaxes://list/{page}/{page_size}
- List of tax reports with paginationcategories://list
- List of transaction categories
Tools
The MCP server provides the following tools for Norman Finance API interaction:
Company Management
get_company_details()
- Get detailed information about your companyupdate_company_details(name, profession, address, etc.)
- Update company informationget_company_balance()
- Get the current balance of the companyget_company_tax_statistics()
- Get tax statistics for the companyget_vat_next_report()
- Get the VAT amount for the next report period
Transaction Management
search_transactions(description, from_date, to_date, min_amount, max_amount, etc.)
- Search for transactions matching criteriacreate_transaction(amount, description, cashflow_type, etc.)
- Create a new transactionupdate_transaction(transaction_id, amount, description, etc.)
- Update an existing transactioncategorize_transaction(transaction_amount, transaction_description, transaction_type)
- Detect category for a transaction using AI
Invoice Management
create_invoice(client_id, items, etc.)
- Create a new invoicecreate_recurring_invoice(client_id, items, etc.)
- Create a new recurring invoiceget_invoice(invoice_id)
- Get details about a specific invoicesend_invoice(invoice_id, subject, body, etc.)
- Send an invoice via emaillink_transaction(invoice_id, transaction_id)
- Link a transaction to an invoiceget_einvoice_xml(invoice_id)
- Get the e-invoice XML for a specific invoicelist_invoices(status, from_date, to_date, etc.)
- List invoices with optional filtering
Client Management
list_clients()
- Get a list of all clientsget_client(client_id)
- Get detailed information about a specific clientcreate_client(name, client_type, address, etc.)
- Create a new clientupdate_client(client_id, name, client_type, etc.)
- Update an existing clientdelete_client(client_id)
- Delete a client
Document Management
upload_bulk_attachments(file_paths, cashflow_type)
- Upload multiple file attachments in bulklist_attachments(file_name, linked, attachment_type, etc.)
- Get list of attachments with optional filterscreate_attachment(file_path, transactions, attachment_type, etc.)
- Create a new attachmentlink_attachment_transaction(attachment_id, transaction_id)
- Link a transaction to an attachment
Tax Management
list_tax_reports()
- List all available tax reportsget_tax_report(report_id)
- Retrieve a specific tax reportvalidate_tax_number(tax_number, region_code)
- Validate a tax number for a specific regiongenerate_finanzamt_preview(report_id)
- Generate a test Finanzamt preview for a tax reportsubmit_tax_report(report_id)
- Submit a tax report to the Finanzamtlist_tax_states()
- Get list of available tax stateslist_tax_settings()
- Get list of tax settings for the current companyupdate_tax_setting(setting_id, tax_type, vat_type, etc.)
- Update a tax setting
Prompts
The MCP server offers these guided prompts to help users interact with Norman Finance:
create_transaction_prompt(amount, description, cashflow_type)
- Create a prompt for adding a new transactioncreate_client_prompt(name, client_type)
- Create a prompt for adding a new clientsend_invoice_prompt(invoice_id)
- Create a prompt for sending an invoice via emailsearch_transactions_prompt(date_range)
- Create a prompt for searching transactions
Example Interactions
Here are some example interactions with the Norman Finance MCP server:
View Company Details
List Transactions
Create a Transaction
Create an Invoice
Development
This section is for contributors who want to develop or extend the Norman Finance MCP server.
Local Development Setup
- Clone the repository:Copy
- Create and activate a virtual environment:Copy
- Install development dependencies:Copy
- Create a
.env
file with your Norman Finance credentials:Copy
Running in Development Mode
To run the MCP server in development mode with the MCP Inspector:
This will start the server and open the MCP Inspector in your browser, allowing you to test resources and tools interactively.
You must be authenticated.
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
Tools
Norman Finance is an accounting and tax filing autopilot designed for entrepreneurs in Germany. The Norman Finance MCP server enables new ways of interacting with Norman Finance's accounting, tax, and invoicing services. Simplifying financial workflows by integrating Norman Finance API capabilities
Related MCP Servers
- AsecurityAlicenseAqualityA Model Context Protocol (MCP) server that provides real-time access to financial market data through the free Alpha Vantage API. This server implements a standardized interface for retrieving stock quotes and company information.Last updated -530PythonMIT License
- -securityAlicense-qualityAn MCP server that allows accessing and managing ledger files through Claude by providing account listing, balance checking, and transaction register viewing capabilities.Last updated -1PythonGPL 3.0
- -securityFlicense-qualityAn MCP server implementation that integrates with Angle One APIs to provide standardized access to financial market data, trading operations, and portfolio management.Last updated -Python
- AsecurityAlicenseAqualityA simple MCP server for Yahoo Finance using yfinance. This server provides a set of tools to fetch stock data, news, and other financial information.Last updated -106PythonMIT License