Moneybird Accounting
STDIOHTTP-SSEMCP server that connects AI assistants to Moneybird accounting software via API.
MCP server that connects AI assistants to Moneybird accounting software via API.
A Model Context Protocol (MCP) server that connects AI assistants like Claude to Moneybird accounting software via API.
created_after:2023-01-01 00:00:00 UTC
updated_after:2023-01-01 10:45:35 UTC
first_name:value
, etc.Install the package:
npm install -g moneybird-mcp-server
Create a .env file with your Moneybird credentials:
MONEYBIRD_API_TOKEN=your_api_token
MONEYBIRD_ADMINISTRATION_ID=your_administration_id
Run the server:
npx moneybird-mcp-server
To set up this MCP server in Claude Desktop:
Install the package globally if you haven't already:
npm install -g moneybird-mcp-server
Create or edit the Claude Desktop configuration file (usually in ~/Library/Application Support/Claude/claude_desktop_config.json
) to include the MCP server configuration:
{ "mcpServers": { "moneybird": { "command": "npx", "args": [ "-y", "moneybird-mcp-server" ], "env": { "MONEYBIRD_API_TOKEN": "your_api_token_here", "MONEYBIRD_ADMINISTRATION_ID": "your_administration_id_here" } } } }
Restart Claude Desktop to apply the changes
Connect to the MCP server by typing /mcp moneybird
in the Claude chat input
This server allows AI assistants to interact with your Moneybird accounting data using the Model Context Protocol. It provides various tools to:
Clone this repository:
git clone https://github.com/vanderheijden86/moneybird-mcp-server.git
cd moneybird-mcp-server
Install dependencies:
npm install
Create .env
file from the example:
cp .env.example .env
Edit the .env
file with your Moneybird API credentials:
MONEYBIRD_API_TOKEN
: Your Moneybird API token (generate at https://moneybird.com/user/applications)MONEYBIRD_ADMINISTRATION_ID
: Your Moneybird administration ID (found in URL when logged in)MCP_SERVER_PORT
: The port to run the MCP server on (default: 3000)For development:
npm run dev
For production:
npm run build
npm start
This MCP server is compatible with any AI assistant that supports the Model Context Protocol. Once running, you can connect it to your AI assistant by providing the server URL:
http://your-server-address:3000
The server provides the following tools:
list_contacts
: List all contacts in Moneybirdget_contact
: Get details for a specific contact by IDlist_sales_invoices
: List all sales invoicesget_sales_invoice
: Get details for a specific sales invoice by IDlist_financial_accounts
: List all financial accountslist_products
: List all productslist_projects
: List all projectslist_time_entries
: List all time entriesmoneybird_request
: Make a custom request to the Moneybird APIThis server should be deployed with appropriate security measures, as it provides access to your Moneybird data. Consider:
MIT