This MCP server provides seamless integration between AI assistants like Claude and your Moneybird accounting software, letting you manage contacts, access financial data, and perform business operations directly through the assistant.
Install the package globally:
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
Clone the repository:
git clone https://github.com/vanderheijden86/moneybird-mcp-server.git
cd moneybird-mcp-server
Install dependencies:
npm install
Create and configure .env file:
cp .env.example .env
Then edit the .env file with:
MONEYBIRD_API_TOKEN
: Your API token (generate at https://moneybird.com/user/applications)MONEYBIRD_ADMINISTRATION_ID
: Your administration ID (found in URL when logged in)MCP_SERVER_PORT
: Port for the MCP server (default: 3000)Start the server:
npm run build
npm start
Create or edit the Claude Desktop configuration file (usually at ~/Library/Application Support/Claude/claude_desktop_config.json
) to include:
{
"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 changes
Connect to the server by typing /mcp moneybird
in the Claude chat
created_after:2023-01-01 00:00:00 UTC
updated_after:2023-01-01 10:45:35 UTC
first_name:value
, etc.Make custom requests to any Moneybird API endpoint
When implementing this server, consider these security measures:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "moneybird" '{"command":"npx","args":["-y","moneybird-mcp-server"],"env":{"MONEYBIRD_API_TOKEN":"your_api_token_here","MONEYBIRD_ADMINISTRATION_ID":"your_administration_id_here"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"moneybird": {
"command": "npx",
"args": [
"-y",
"moneybird-mcp-server"
],
"env": {
"MONEYBIRD_API_TOKEN": "your_api_token_here",
"MONEYBIRD_ADMINISTRATION_ID": "your_administration_id_here"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"moneybird": {
"command": "npx",
"args": [
"-y",
"moneybird-mcp-server"
],
"env": {
"MONEYBIRD_API_TOKEN": "your_api_token_here",
"MONEYBIRD_ADMINISTRATION_ID": "your_administration_id_here"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect