Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"fortnox": {
"url": "https://fortnox-mcp.vercel.app/mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server for integrating with the Fortnox Swedish accounting system. This server enables LLMs to interact with Fortnox for managing invoices, customers, suppliers, orders, accounts, vouchers, and provides business intelligence analytics.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'fortnox-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked fortnox-mcp-server against OSV.dev.
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
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
MCP Security Weekly
Get CVE alerts and security updates for io.github.jakobwennberg/fortnox and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server for integrating with the Fortnox Swedish accounting system. This server enables LLMs to interact with Fortnox for managing invoices, customers, suppliers, orders, accounts, vouchers, and provides business intelligence analytics.
| Mode | Best For | Setup |
|---|---|---|
| Remote Mode | End users | Just add URL, authorize in browser |
| Local Mode | Developers, self-hosted | Configure environment variables |
The easiest way to use Fortnox MCP - no credentials needed, just authorize in your browser.
https://fortnox-mcp.vercel.app/mcpOpen your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd this configuration:
{
"mcpServers": {
"fortnox": {
"url": "https://fortnox-mcp.vercel.app/mcp"
}
}
}
Restart Claude Desktop. When you first ask Claude to do something with Fortnox, a browser window will open for you to authorize access to your Fortnox account. Once authorized, you're all set!
For developers who want to run the server locally or use their own Fortnox app credentials.
Open your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd this configuration:
{
"mcpServers": {
"fortnox": {
"command": "npx",
"args": ["-y", "fortnox-mcp-server"],
"env": {
"FORTNOX_CLIENT_ID": "your-client-id",
"FORTNOX_CLIENT_SECRET": "your-client-secret",
"FORTNOX_REFRESH_TOKEN": "your-refresh-token"
}
}
}
}
That's it! You can now ask Claude to manage your Fortnox invoices, customers, and more.
fortnox_list_customers - List and search customersfortnox_get_customer - Get customer detailsfortnox_create_customer - Create new customerfortnox_update_customer - Update customerfortnox_delete_customer - Delete customerfortnox_list_invoices - List invoices with filteringfortnox_get_invoice - Get invoice details with line itemsfortnox_create_invoice - Create new invoicefortnox_update_invoice - Update draft invoicefortnox_bookkeep_invoice - Bookkeep invoicefortnox_cancel_invoice - Cancel invoicefortnox_credit_invoice - Create credit notefortnox_send_invoice_email - Send invoice by emailfortnox_list_suppliers - List and search suppliersfortnox_get_supplier - Get supplier detailsfortnox_create_supplier - Create new supplierfortnox_update_supplier - Update supplierfortnox_delete_supplier - Delete supplierfortnox_list_supplier_invoices - List supplier invoices with filteringfortnox_get_supplier_invoice - Get supplier invoice detailsfortnox_approve_supplier_invoice - Approve supplier invoice for paymentfortnox_payables_report - Get accounts payable aging reportfortnox_list_orders - List sales orders with filteringfortnox_list_offers - List offers/quotes with filtering