bill-mcp-server

civicteam/bill-mcp-server

3.2

If you are the rightful owner of bill-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

This document provides a comprehensive overview of the Bill.com MCP Server, which integrates Bill.com accounting and payment services with AI assistants like Claude.

Tools
21
Resources
0
Prompts
0

Bill.com MCP Servers

This repository contains MCP (Model Context Protocol) servers for Bill.com API integrations.

Structure

bill-mcp-server/
├── ap-ar/           # Accounts Payable & Receivable API
│   ├── src/
│   ├── package.json
│   └── README.md
└── spend-expense/   # Spend & Expense API
    ├── src/
    ├── package.json
    └── README.md

Servers

AP/AR Server (ap-ar/)

MCP server for Bill.com's Accounts Payable and Accounts Receivable API.

Authentication: Session-based with 4 credentials:

  • BILL_DEV_KEY
  • BILL_USERNAME
  • BILL_PASSWORD
  • BILL_ORGANIZATION_ID

Spend & Expense Server (spend-expense/)

MCP server for Bill.com's Spend & Expense API.

Authentication: Single API token:

  • BILL_API_TOKEN

Development

Each server is an independent Node.js project. Navigate to the respective directory and follow the instructions in its README.

# For AP/AR server
cd ap-ar
npm install
npm run dev

# For Spend & Expense server
cd spend-expense
npm install
npm run dev