Buildium MCP Server

Buildium MCP Server

Enables interaction with Buildium property management software through natural language, supporting operations on associations, leases, rentals, tenants, and more.

Category
Visit Server

README

Buildium MCP Server

Experimental Model Context Protocol (MCP) server for Buildium Property Management API, built with Python + FastMCP. Uses API key authentication for server-to-server communication.

āš ļø Status & Disclaimers

  • Experimental: Not production-ready; no SLA; APIs and behavior may change.
  • No affiliation with Buildium: This is a community integration. Buildium is a trademark of Buildium, LLC.
  • Security: Do not commit secrets. Treat client IDs and secrets as sensitive; use a secrets manager. Use at your own risk.

Features

  • šŸ” API Key Authentication - Secure server-to-server authentication via headers
  • šŸ˜ļø 81 Tools Across 12 Categories - Comprehensive property management coverage
  • šŸ“‹ Selective Tool Loading - Enable only the categories you need
  • šŸ¢ Multi-Property Types - Rentals, associations, and units
  • šŸ”Œ MCP Protocol - Compatible with Claude Desktop, Cursor, and other MCP clients

Requirements

  • Python 3.11+
  • uv package manager (or pip)
  • Buildium API credentials (client ID and client secret)

Installation

Using uv (Recommended)

# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | sh

# Install the package
uv pip install -e "git+https://github.com/luthersystems/mcp-server-buildium.git"

Using pip

pip install git+https://github.com/luthersystems/mcp-server-buildium.git

Configuration

Configure the server using environment variables:

# API Base URL (no /v1 suffix - SDK adds it automatically)
BUILDIUM_BASE_URL=https://api.buildium.com  # Production
# BUILDIUM_BASE_URL=https://apisandbox.buildium.com  # Sandbox

# API Key Credentials
BUILDIUM_CLIENT_ID=your-client-id
BUILDIUM_CLIENT_SECRET=your-client-secret

# Optional: Selective Tool Categories (comma-separated)
# If not specified, all categories are enabled
BUILDIUM_CATEGORIES=associations,leases,rentals

Tool Categories

Control which tool categories are enabled using the BUILDIUM_CATEGORIES environment variable:

Category Tools Description
associations 6 Homeowner association management
leases 5 Lease agreements and transactions
rentals 5 Rental properties and listings
applicants 10 Rental applicants and applications
tenants 7 Tenant management (rental & association)
owners 8 Property owner management
units 7 Individual unit management
vendors 7 Vendor and service provider management
tasks 5 Task and to-do management
bills 7 Bill and payment management
files 8 Document and file management
bank_accounts 6 Bank account and transaction management

Total: 81 tools

If BUILDIUM_CATEGORIES is not set, all 81 tools across all 12 categories are enabled.

Environment File

Create a .env file (copy from .env.example):

cp .env.example .env
# Edit .env with your credentials

Usage

Running the Server

# With uv
uv run mcp-server-buildium

# Or with Python
python -m mcp_server_buildium.server

Using with Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "buildium": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/luthersystems/mcp-server-buildium",
        "mcp-server-buildium"
      ],
      "env": {
        "BUILDIUM_BASE_URL": "https://apisandbox.buildium.com/",
        "BUILDIUM_CLIENT_ID": "your-client-id",
        "BUILDIUM_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Available Tools (81 total)

Associations (6 tools)

  • list_associations - List all associations
  • get_association - Get association details by ID
  • create_association - Create a new association
  • update_association - Update an existing association
  • list_association_board_members - List board members for an association
  • list_association_ownership_accounts - List ownership accounts for an association

Leases (5 tools)

  • list_leases - List leases with optional filters
  • get_lease - Get lease details by ID
  • create_lease - Create a new lease
  • update_lease - Update an existing lease
  • list_lease_transactions - List transactions for a lease

Rentals (5 tools)

  • list_rentals - List rental properties
  • get_rental - Get rental property details by ID
  • create_rental - Create a new rental property
  • update_rental - Update an existing rental property
  • list_unit_listings - List unit listings for rentals

Applicants (10 tools)

  • list_applicants - List rental applicants
  • get_applicant - Get applicant details by ID
  • create_applicant - Create a new applicant
  • update_applicant - Update an existing applicant
  • list_applicant_applications - List applications for an applicant
  • get_application - Get application details by ID
  • update_application - Update an application
  • list_applicant_groups - List applicant groups
  • create_applicant_group - Create a new applicant group
  • update_applicant_group - Update an applicant group

Tenants (7 tools)

  • list_rental_tenants - List rental tenants
  • get_rental_tenant - Get rental tenant details by ID
  • create_rental_tenant - Create a new rental tenant
  • update_rental_tenant - Update a rental tenant
  • list_association_tenants - List association tenants
  • create_association_tenant - Create a new association tenant
  • update_association_tenant - Update an association tenant

Owners (8 tools)

  • list_rental_owners - List rental property owners
  • get_rental_owner - Get rental owner details by ID
  • create_rental_owner - Create a new rental owner
  • update_rental_owner - Update a rental owner
  • list_association_owners - List association owners
  • get_association_owner - Get association owner details by ID
  • create_association_owner - Create a new association owner
  • update_association_owner - Update an association owner

Units (7 tools)

  • list_rental_units - List rental units
  • get_rental_unit - Get rental unit details by ID
  • create_rental_unit - Create a new rental unit
  • update_rental_unit - Update a rental unit
  • list_association_units - List association units
  • create_association_unit - Create a new association unit
  • update_association_unit - Update an association unit

Vendors (7 tools)

  • list_vendors - List vendors
  • get_vendor - Get vendor details by ID
  • create_vendor - Create a new vendor
  • update_vendor - Update an existing vendor
  • list_vendor_categories - List vendor categories
  • create_vendor_category - Create a new vendor category
  • update_vendor_category - Update a vendor category

Tasks (5 tools)

  • list_tasks - List tasks
  • get_task - Get task details by ID
  • list_task_categories - List task categories
  • create_task_category - Create a new task category
  • update_task_category - Update a task category

Bills (7 tools)

  • list_bills - List bills
  • get_bill - Get bill details by ID
  • create_bill - Create a new bill
  • update_bill - Update an existing bill
  • list_bill_payments - List payments for bills
  • get_bill_payment - Get bill payment details by ID
  • create_bill_payment - Create a new bill payment

Files (8 tools)

  • list_files - List files
  • get_file - Get file details by ID
  • update_file - Update file metadata
  • create_file_upload_request - Create a file upload request
  • create_file_download_request - Create a file download request
  • list_file_categories - List file categories
  • create_file_category - Create a new file category
  • update_file_category - Update a file category

Bank Accounts (6 tools)

  • list_bank_accounts - List bank accounts
  • get_bank_account - Get bank account details by ID
  • create_bank_account - Create a new bank account
  • update_bank_account - Update a bank account
  • list_bank_account_transactions - List transactions for a bank account
  • get_bank_account_transaction - Get bank account transaction details by ID

Tool Request/Response Examples

This section provides detailed schemas and examples for key MCP tools.

Example: List Leases

Query leases with optional filters (property, unit, status).

Parameters:

  • property_id (int, optional): Filter by property ID
  • unit_id (int, optional): Filter by unit ID
  • lease_status (str, optional): Filter by status (e.g., "Active", "Future", "Past", "Expired")
  • limit (int, optional): Maximum results (default: 100)
  • offset (int, optional): Pagination offset (default: 0)

Example Request (no filters):

{
  "name": "list_leases",
  "arguments": {}
}

Example Request (with filters):

{
  "name": "list_leases",
  "arguments": {
    "property_id": 123,
    "lease_status": "Active",
    "limit": 50
  }
}

Example Response:

{
  "leases": [
    {
      "id": 12345,
      "propertyId": 123,
      "unitId": 456,
      "leaseType": "Fixed",
      "leaseFromDate": "2024-01-01",
      "leaseToDate": "2024-12-31",
      "status": "Active",
      "tenants": [
        {
          "id": 789,
          "firstName": "John",
          "lastName": "Doe"
        }
      ]
    }
  ],
  "count": 1
}

Example: Get Lease

Retrieve details of a specific lease by ID.

Parameters:

  • lease_id (int, required): The lease ID

Example Request:

{
  "name": "get_lease",
  "arguments": {
    "lease_id": 12345
  }
}

Example Response:

{
  "id": 12345,
  "propertyId": 123,
  "unitId": 456,
  "leaseType": "Fixed",
  "leaseFromDate": "2024-01-01",
  "leaseToDate": "2024-12-31",
  "status": "Active",
  "rentCycle": "Monthly",
  "rentAmount": 2000.00,
  "securityDepositAmount": 2000.00,
  "tenants": [
    {
      "id": 789,
      "firstName": "John",
      "lastName": "Doe",
      "email": "john.doe@example.com",
      "phoneNumbers": {
        "home": "555-0100"
      }
    }
  ],
  "createdDateTime": "2024-01-01T10:00:00Z",
  "lastModifiedDateTime": "2024-01-01T10:00:00Z"
}

Example: Create Lease

Create a new lease agreement.

Required Parameters:

  • lease_type (str): Lease type - "AtWill" (month-to-month), "Fixed" (specific dates), or "FixedWithRollover"
  • unit_id (int): Unit ID for the lease
  • lease_from_date (str): Start date (format: YYYY-MM-DD)
  • send_welcome_email (bool): Whether to send welcome email to tenants

Optional Parameters:

  • lease_to_date (str): End date (required for Fixed/FixedWithRollover leases)
  • tenant_ids (list[int]): Existing tenant IDs to add (max 5)
  • tenants (list[object]): New tenants to create (max 5)
  • applicant_ids (list[int]): Approved applicant IDs to convert to tenants (max 5)
  • rent (object): Rent configuration with cycle and charges
  • security_deposit (object): Security deposit details
  • prorated_first_month_rent (float): Prorated first month rent
  • prorated_last_month_rent (float): Prorated last month rent
  • cosigners (list[object]): Cosigner details

Example Request (Minimal - Using Existing Tenant):

{
  "name": "create_lease",
  "arguments": {
    "lease_data": {
      "lease_type": "Fixed",
      "unit_id": 456,
      "lease_from_date": "2025-01-01",
      "lease_to_date": "2025-12-31",
      "send_welcome_email": true,
      "tenant_ids": [789]
    }
  }
}

Example Request (Complete with New Tenant and Rent):

{
  "name": "create_lease",
  "arguments": {
    "lease_data": {
      "lease_type": "Fixed",
      "unit_id": 456,
      "lease_from_date": "2025-01-01",
      "lease_to_date": "2025-12-31",
      "send_welcome_email": true,
      "tenants": [
        {
          "first_name": "Jane",
          "last_name": "Smith",
          "email": "jane.smith@example.com",
          "phone_numbers": {
            "home": "555-0200"
          },
          "address": {
            "address_line1": "123 Main St",
            "city": "Springfield",
            "state": "IL",
            "postal_code": "62701",
            "country": "US"
          }
        }
      ],
      "rent": {
        "cycle": "Monthly",
        "charges": [
          {
            "gl_account_id": 1001,
            "amount": 2000.00
          }
        ]
      },
      "security_deposit": {
        "due_date": "2025-01-01",
        "amount": 2000.00
      }
    }
  }
}

Example Response:

{
  "id": 12346,
  "propertyId": 123,
  "unitId": 456,
  "leaseType": "Fixed",
  "leaseFromDate": "2025-01-01",
  "leaseToDate": "2025-12-31",
  "status": "Active",
  "rentCycle": "Monthly",
  "rentAmount": 2000.00,
  "securityDepositAmount": 2000.00,
  "tenants": [
    {
      "id": 790,
      "firstName": "Jane",
      "lastName": "Smith",
      "email": "jane.smith@example.com"
    }
  ],
  "createdDateTime": "2024-11-07T00:00:00Z"
}

Field Descriptions:

Lease Types:

  • AtWill: Month-to-month lease with no end date. Automatic transactions continue until manually ended.
  • Fixed: Lease with specific start/end dates. Moves to expired on end date, stops automatic transactions.
  • FixedWithRollover: Lease that converts to AtWill status at end date, continuing automatic transactions.

Rent Configuration:

  • cycle: Rent frequency - "Monthly", "Weekly", "Every2Weeks", "Quarterly", "Yearly", "Every2Months", "Daily", "Every6Months", "OneTime"
  • charges: Array of rent charges with GL account ID and amount

Tenant Creation:

  • Can provide up to 5 tenants via tenant_ids (existing), tenants (new), or applicant_ids (approved applicants)
  • Required tenant fields: first_name, last_name, address
  • Optional: email, phone_numbers, date_of_birth, emergency_contact, etc.

Example Usage

Example Prompts

"List all rental properties in Buildium"

"Show me lease #12345"

"Create a new lease for property 100, unit 205"

"List all associations"

Development

Setting Up Development Environment

# Clone the repository
git clone https://github.com/luthersystems/mcp-server-buildium.git
cd mcp-server-buildium

# Install uv if needed
curl -LsSf https://astral.sh/uv/install.sh | sh

# Install dependencies
uv pip install -e ".[dev]"

Running Tests

# Run unit tests (no credentials needed)
uv run pytest tests/ --ignore=tests/test_integration.py

# Run with coverage
uv run pytest --cov=mcp_server_buildium --cov-report=html

# Run linter
uv run ruff check .

# Format code
uv run ruff format .

Integration Tests (Optional)

Integration tests validate real Buildium API authentication. They are skipped by default and only run when you provide real credentials.

To enable integration tests:

  1. Copy .env.example to .env:

    cp .env.example .env
    
  2. Fill in your Buildium credentials in .env:

    BUILDIUM_BASE_URL=https://apisandbox.buildium.com/
    BUILDIUM_CLIENT_ID=your-client-id
    BUILDIUM_CLIENT_SECRET=your-client-secret
    
  3. Run integration tests:

    uv run pytest tests/test_integration.py -v
    

Test Credentials (Sandbox):

  • Client ID: 54f6ac5b-5629-4934-a930-d2c8174fcf4a
  • Client Secret: tHXJx7mFoCEXtqCvBL3oV1Fv6hHb5WVokKHIvT1cUIA=
  • Base URL: https://apisandbox.buildium.com/

CI/CD Setup (GitHub Actions)

To run integration tests in GitHub Actions:

  1. Add GitHub repository secrets:

    • Go to your repo → Settings → Secrets and variables → Actions
    • Add the following secrets:
      • BUILDIUM_BASE_URL: https://apisandbox.buildium.com/
      • BUILDIUM_CLIENT_ID: Your client ID
      • BUILDIUM_CLIENT_SECRET: Your client secret
  2. The CI workflow will automatically run integration tests when these secrets are present

Note: The integration tests will be skipped in PRs from forks (for security), but will run on pushes to main/develop branches.

What the integration tests verify:

  • āœ… OAuth authentication works with your credentials
  • āœ… Access token can be obtained successfully
  • āœ… API calls work (tests list_associations, list_rentals, list_leases)
  • āœ… Token refresh mechanism works

Note: Integration tests require a Buildium developer account (sandbox environment recommended).

Generating SDK from OpenAPI Spec

If you want to generate a Python SDK from the Buildium OpenAPI spec:

# Generate SDK (requires Java for OpenAPI Generator)
make generate-sdk

# The generated SDK will be in buildium_sdk/ directory

See Makefile for more details.

Project Structure

mcp-server-buildium/
ā”œā”€ā”€ src/mcp_server_buildium/
│   ā”œā”€ā”€ __init__.py
│   ā”œā”€ā”€ server.py           # Main FastMCP server
│   ā”œā”€ā”€ config.py           # Configuration management
│   ā”œā”€ā”€ buildium_client.py  # OAuth auth & API client
│   └── tools/
│       ā”œā”€ā”€ associations.py # Association tools
│       ā”œā”€ā”€ leases.py       # Lease tools
│       └── rentals.py      # Rental tools
ā”œā”€ā”€ tests/
│   ā”œā”€ā”€ test_buildium_client.py
│   └── test_integration.py
ā”œā”€ā”€ pyproject.toml
└── README.md

Troubleshooting

"Failed to obtain access token"

  • Verify client ID and secret are correct
  • Check base URL is correct (sandbox vs production)
  • Ensure token URL is accessible
  • Verify scopes are correct

"401 Unauthorized"

  • Check credentials are valid
  • Verify API endpoint URLs
  • Ensure OAuth scopes include required permissions

"Connection timeout"

  • Check internet connectivity
  • Verify firewall settings
  • Try sandbox environment first

API Endpoints

  • Production: https://api.buildium.com/
  • Sandbox: https://apisandbox.buildium.com/

Security Best Practices

  1. Never commit credentials - Use .gitignore and environment variables
  2. Use secrets management - Store credentials in secure vaults (AWS Secrets Manager, etc.)
  3. Rotate credentials regularly - Generate new client secrets periodically
  4. Limit token lifetime - Use shorter expiration for sensitive operations
  5. Monitor API usage - Check Buildium dashboard for unusual activity
  6. Use sandbox environment - Test with sandbox accounts before production

Architecture

  • Language: Python 3.11+
  • Framework: FastMCP
  • Auth: OAuth 2.0 client credentials flow
  • Transport: stdio (MCP protocol)
  • HTTP Client: httpx
  • Testing: pytest with mocks

References

License

MIT

Contributing

Contributions welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Add tests for new functionality
  4. Ensure all tests pass
  5. Submit a pull request

Support

This is an experimental community project. For Buildium API issues, consult the Buildium Developer Center.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured