AppFolio MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AppFolio MCP ServerPull the rent roll for Greensborough Village."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AppFolio MCP Server v2
A Model Context Protocol (MCP) server that wraps AppFolio's REST API so Claude can call it natively in any conversation — the same way Quo works. 38 tools covering portfolio structure, leasing, financials, maintenance, and admin.
When this is deployed and connected, you can say things like:
"Pull the rent roll for Greensborough Village."
"Build a Cash P&L for 215 Union St for Q1 2026."
"Show me work orders open more than 30 days."
"Which vendors have expired insurance?"
"What's our monthly cash flow at Russellville this year?"
And Claude calls the AppFolio API directly.
⚠️ Important note on budgets
AppFolio's public API does NOT expose a /budgets endpoint. I can pull actuals from the GL all day (that's what build_pl_summary and build_cash_flow do), but the budget side has to come from somewhere else:
AppFolio's UI exports (you can download budget reports as XLSX from inside AppFolio)
A Google Sheet of your budgets, attached to a Claude conversation
A planning doc in Notion or Drive
Once budgets are available in the conversation, Claude can do budget-vs-actual comparisons against the actuals this server returns. If AppFolio adds a budgets endpoint to a newer API version, the pattern to add it is identical to the existing tools — let me know and I'll wire it up.
What this server gives you on the financial side:
P&L summary (
build_pl_summary) — income / expense / NOI by GL account for a property and date rangeCash flow by month (
build_cash_flow) — monthly trend of cash in / cash out / netAll the raw underlying data (
get_gl_details,get_gl_accounts,get_journal_entries,get_bank_accounts)
For the actual official month-end reports you sign off on, keep using AppFolio's UI — this server is for the day-to-day questions you'd otherwise have to log in to find.
Related MCP server: NDI-MCP-Server
What you'll need before starting
AppFolio API credentials (you have these):
Client ID
Client Secret
AppFolio Developer ID — log in to AppFolio → click your account name (top right) → Admin → look for the Developer ID card. Copy that UUID.
A Cloudflare account (free tier): https://dash.cloudflare.com/sign-up
Node.js 20+ installed locally: https://nodejs.org
Git (optional).
No server to rent, no domain to buy. Cloudflare gives you a free *.workers.dev URL.
Step-by-step deployment (~15 minutes the first time)
1. Install dependencies
npm install2. Log into Cloudflare
npx wrangler login3. Set the three secrets
npx wrangler secret put APPFOLIO_CLIENT_ID
npx wrangler secret put APPFOLIO_CLIENT_SECRET
npx wrangler secret put APPFOLIO_DEVELOPER_IDPaste each value when prompted.
4. Deploy
npm run deployYou'll get a URL like https://appfolio-mcp.<your-subdomain>.workers.dev. Test it in a browser — root should return a JSON health check showing 38 tools.
5. Connect it to Claude
Settings → Connectors → Add custom connector
Name:
AppFolioURL:
https://appfolio-mcp.<your-subdomain>.workers.dev/sseSave.
Claude discovers all 38 tools. Done.
Tool catalog
Portfolio & structure (7)
Tool | Purpose |
| List properties; filter by type or date |
| Property groupings (e.g. by city or manager) |
| Top-level portfolios |
| Units across portfolio |
| Unit type / floor-plan definitions |
| Property owners |
| Ownership groups + percentages |
Leasing & occupancy (8)
Tool | Purpose |
| Tenants; filter by status (Current/Past/Future/Notice) |
| Composite — units + current tenants joined |
| Lease records |
| Approved renewal pricing options |
| Leasing leads / guest cards |
| Applications by property/unit/date |
| Tour appointments |
| Active marketing listings |
Financial — receivables (4)
Tool | Purpose |
| Open charges (good for duplicate detection) |
| Past-due charges |
| Monthly/recurring billings |
| Charges + payments + credits by occupancy |
Financial — payables (2)
Tool | Purpose |
| Accounts payable |
| Outgoing payments / checks |
Financial — GL & reporting (6)
Tool | Purpose |
| Chart of accounts |
| GL transaction detail (raw) |
| Manual journal entries |
| Bank accounts |
| Composite — P&L by GL account for property + date range |
| Composite — monthly cash in/out/net by month |
Maintenance (8)
Tool | Purpose |
| Work orders; filter by status |
| Photos/PDFs on work orders |
| Composite — open WOs with vendor + age |
| Composite — WOs bucketed by 0-7/8-30/31-60/61-90/90+ days |
| Vendor list |
| Composite — expired/expiring insurance/contracts/workers comp |
| Maintenance parts/supplies inventory |
| Where inventory is stored |
Admin (3)
Tool | Purpose |
| AppFolio Property Manager users |
| Custom field definitions |
| Status of bulk async jobs (from bulk-creates) |
All list-type tools auto-paginate up to 3 pages by default (300 records). Override with max_pages (cap 10).
Example prompts that exercise the composite tools
Rent roll
"Pull the rent roll for property
<id>and tell me what % is occupied vs vacant."
P&L summary
"Build a Cash P&L for Greensborough (
<id>) from 2026-01-01 to 2026-03-31. Show NOI."
Cash flow trend
"Run a cash flow report for Russellville for the last 12 months. Highlight the months below $5K net."
Open work orders by age
"Show me work orders open more than 60 days, grouped by property."
Vendor compliance
"Which vendors have insurance expiring in the next 30 days?"
Local development
cp .dev.vars.example .dev.vars
# Fill in real credentials in .dev.vars (gitignored).
npm run devLocal URL: http://localhost:8787/sse.
Logs and debugging
npm run logsOr Cloudflare dashboard → Workers & Pages → appfolio-mcp → Logs.
Common issues:
401 from AppFolio: Credentials wrong or missing Developer ID. Re-run all three
wrangler secret putcommands.403 from AppFolio: Your API user lacks permission for that endpoint. AppFolio gates each endpoint individually on the developer user's profile. Log into AppFolio → Admin → API and check what's enabled.
get_gl_detailsreturning 400: It requiresdate_from+date_toANDproperty_idunless the window is ≤2 days. The composite tools (build_pl_summary,build_cash_flow) handle this for you.429 (rate limit): AppFolio limits are 8/sec, 256/min, 4096/hour. The server retries once. Composite tools can hit rate limits if you query huge date ranges — narrow your window or wait.
Claude says "tool not found": Refresh the connector (remove and re-add).
Adding write operations (CAUTION)
This version is read-only on purpose. Writes (creating bills, updating leads, posting charges) touch money and legal documents. Before adding any create_* or update_* tool:
Test in an AppFolio sandbox database — never your live one for first runs.
Add a confirmation gate — make Claude require you to type "yes, post bill $X to vendor Y" before the tool fires.
Log everything — write to a KV store, R2 bucket, or external log service so you have an audit trail.
Scope the API user — create a separate AppFolio developer user with only the permissions needed for those specific writes, not your master one.
When you're ready, ask me to add a specific write tool with these safeguards.
Architecture
┌─────────────┐ MCP/SSE ┌──────────────────┐ HTTPS+Basic ┌──────────────┐
│ Claude UI │ ◄────────────────►│ Cloudflare │ ◄────────────────►│ AppFolio │
│ │ │ Worker (this) │ │ REST API │
└─────────────┘ └──────────────────┘ └──────────────┘
│
▼
Cloudflare Secrets
(CLIENT_ID, SECRET,
DEVELOPER_ID)Composite tools (build_pl_summary, build_cash_flow, get_rent_roll, get_open_work_orders, get_work_order_aging, get_vendor_compliance) make multiple AppFolio API calls server-side and stitch the results together before returning. This keeps Claude's context clean and respects rate limits.
Cost: well within Cloudflare's free tier for personal/small-team use.
Files
appfolio-mcp/
├── src/
│ ├── index.ts # Worker entrypoint — wires up tool modules, /sse + /mcp routing
│ ├── client.ts # AppFolio REST client — auth, pagination, 429 retry
│ ├── util.ts # Shared helpers + zod schemas (dateFromSchema, maxPagesSchema, ...)
│ ├── list-tool.ts # Factory for the common "list entities" tool shape
│ └── tools/
│ ├── portfolio.ts # Portfolio & structure (7)
│ ├── leasing.ts # Leasing & occupancy (8), incl. rent roll composite
│ ├── financial.ts # Receivables, payables, GL & reporting (12), incl. P&L/cash flow composites
│ ├── maintenance.ts # Work orders, vendors, inventory (8), incl. composites
│ └── admin.ts # Admin (3)
├── package.json # Dependencies + npm scripts
├── tsconfig.json # TypeScript config
├── wrangler.toml # Cloudflare Worker config
├── .dev.vars.example # Template for local dev secrets
├── .gitignore
└── README.md # You are hereMost simple list-style tools (properties, units, owners, vendors, etc.) are registered via registerListTool in list-tool.ts to avoid repeating the same id/property_id/last-updated/pagination boilerplate ~20 times. Tools with required fields, "one of X is required" validation, or multi-call composite logic (build_pl_summary, get_rent_roll, get_vendor_compliance, etc.) are hand-written in their category file.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/swagger3x/appfolio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server