What is Norman Finance MCP Server enables AI to interact with the Norman Finance API for accounting, invoices, and more.?
The Norman Finance MCP Server is a Model Context Protocol (MCP) server that allows AI to interact with the Norman Finance API, providing access to accounting, invoices, companies, clients, taxes, and more through a standardized protocol. It is currently in Beta, and feedback is welcome.
This Model Context Protocol (MCP) server enables AI to interact with the Norman Finance API, allowing access to accounting, invoices, companies, clients, taxes, and more through a standardized protocol.
[!NOTE]
The Norman Finance MCP Server is currently in Beta. We welcome your feedback and encourage you to report any bugs by opening an issue here.
Features
🔐 Authentication: Securely authenticate with the Norman Finance account
💼 Company Management: Manage your company details, get company balance, VAT insgihts, etc
📊 Accounting: Keep an eye on your transactions, categorization
📝 (e-)Invoicing: Make, view, send, and handle invoices. You can even set up recurring ones based on your contracts
👥 Client Management: Create and manage your clients (CRM)
💰 Taxes: View tax information and reports, generate official Finanzamt PDF previews and file your taxes
📄 Documents: Upload and manage attachments (receipts, invoices, docs, etc)
The remote MCP is recommended because it utilizes OAuth authentication, enabling you to log in directly with your Norman account without the need to create or manage access tokens manually.
Installation# Cursor
To add the Norman MCP server to Cursor, copy and paste the following deeplink into your browser:
The Norman MCP server supports two authentication methods:
1. OAuth Authentication (for SSE transport)
When using the server with MCP Inspector, Claude, or other SSE clients, the server uses OAuth 2.0 authentication:
Start the server with SSE transport:
python -m norman_mcp --transport sse
When connecting to the server, you'll be directed to a login page
Enter your Norman Finance credentials
You'll be redirected back to your application with authentication tokens
2. Environment Variables (for stdio transport)
When using the server with Claude Desktop or stdin/stdout communication, provide credentials through environment variables:
[email protected]
NORMAN_PASSWORD=your-password
NORMAN_ENVIRONMENT=production # or "sandbox" for the development environment
NORMAN_API_TIMEOUT=200 # Request timeout in seconds
Environment Variables
The server can be configured using these environment variables:
[email protected]
NORMAN_PASSWORD=your-password
NORMAN_ENVIRONMENT=production # or "sandbox" for the development environment
# Server configuration
NORMAN_MCP_HOST=0.0.0.0 # Host to bind to
NORMAN_MCP_PORT=3001 # Port to bind to
NORMAN_MCP_PUBLIC_URL=http://example.com # Public URL for OAuth callbacks (important for remote access)
NORMAN_API_TIMEOUT=200 # Request timeout in seconds
Development
This section is for contributors who want to develop or extend the Norman Finance MCP server.
Local setup
git clone https://github.com/norman-finance/norman-mcp-server.git
cd norman-mcp-server
pip install -e .
Then update your claude_desktop_config.json file to point to the Python module directly: