A Model Context Protocol (MCP) server that exposes read-only access to LoanPro data via multiple transport protocols: HTTP, Server-Sent Events (SSE)
A Model Context Protocol (MCP) server that exposes read-only access to LoanPro data via multiple transport protocols: HTTP, Server-Sent Events (SSE), and stdio. The loanpro mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 9 defined tools rather than through you.
Everything the assistant can do here goes through one of these:
get_loan — Retrieve comprehensive loan information by ID including balances, payment schedules, and customer detailssearch_loans — The search_loans tool exposed by this serverget_customer — The get_customer tool exposed by this serversearch_customers — The search_customers tool exposed by this serverget_loan_payments — The get_loan_payments tool exposed by this serverget_loan_transactions — Get detailed transaction history for a loan including payments, charges, credits, and adjustmentsMocking — Tests use mock implementations to avoid external dependencies: - MockLoanProClient - Simulates LoanPro API responses - MockMCPHandler - Simulates MCPPrerequisites — The Prerequisites tool exposed by this serverExamples — The Examples tool exposed by this serverYou will need 3 environment variables: LOANPRO_API_URL, LOANPRO_API_KEY, LOANPRO_TENANT_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Among the payments and commerce options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Loanpro's toolset — get_loan, search_loans, get_customer and 6 more — is a fair guide to whether it matches your workflow. It is maintained by MiloCreditPlatform; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Loanpro's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| get_loan | Retrieve comprehensive loan information by ID including balances, payment schedules, and customer details. |
| search_loans | The search_loans tool exposed by this server. |
| get_customer | The get_customer tool exposed by this server. |
| search_customers | The search_customers tool exposed by this server. |
| get_loan_payments | The get_loan_payments tool exposed by this server. |
| get_loan_transactions | Get detailed transaction history for a loan including payments, charges, credits, and adjustments. |
| Mocking | Tests use mock implementations to avoid external dependencies: - MockLoanProClient - Simulates LoanPro API responses - MockMCPHandler - Simulates MCP protocol handling - Interface-based design enables easy testing and de |
| Prerequisites | The Prerequisites tool exposed by this server. |
| Examples | The Examples tool exposed by this server. |
For Go source:
```json
{
"mcpServers": {
"loanpro": {
"command": "go",
"args": ["run", ".", "--transport=stdio"],
"cwd": "/path/to/loanpro-mcp-server",
"env": {
"LOANPRO_API_URL": "https://your-loanpro-instance.com/api",
"LOANPRO_API_KEY": "your_api_key",
"LOANPRO_TENANT_ID": "your_tenant_id"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| LOANPRO_API_URL | Endpoint or connection string the server talks to. | Yes |
| LOANPRO_API_KEY | Credential the server authenticates with. | Yes |
| LOANPRO_TENANT_ID | Configuration value read at startup. | Optional |
Payments infrastructure meets AI — customers, invoices, subscriptions and current API docs from Stripe's server.
Build for Shopify with current APIs — the official Dev MCP server for schema-accurate storefront and admin code.
Give your AI assistant a supervised window into your Interactive Brokers account — balances, positions, live quotes and orders.
Invoices, payments and disputes through PayPal's official server — commerce operations by conversation.
Enables querying and listing Azure resources and costs directly from an MCP client.
Empowers LLMs with Bitcoin Lightning Network payment capabilities via the ZBD API.