Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"loanpro": {
"env": {
"LOANPRO_API_KEY": "your_api_key",
"LOANPRO_API_URL": "https://your-loanpro-instance.com/api",
"LOANPRO_TENANT_ID": "your_tenant_id"
},
"args": [
"--transport=stdio"
],
"command": "/path/to/loanpro-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for Loanpro Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 server is organized into modular packages for maintainability:
├── main.go # Application entry point and transport configuration
├── loanpro/ # LoanPro API integration
│ ├── client.go # HTTP client implementation
│ ├── types.go # Data structures and utilities
│ ├── loans.go # Loan operations
│ ├── customers.go # Customer operations
│ └── payments.go # Payment operations
├── tools/ # MCP tool implementations
│ ├── manager.go # Tool management and execution
│ ├── types.go # Tool interfaces and types
│ └── *.go # Individual tool implementations
└── transport/ # Communication protocols
├── http.go # Streamable HTTP transport
├── sse.go # Server-Sent Events transport
├── stdio.go # Stdio transport for MCP clients
└── types.go # Protocol types and interfaces
.env.example to .env and configure your LoanPro API credentials:
cp .env.example .env
.env with your LoanPro API details:
LOANPRO_API_URL=https://your-loanpro-instance.com/api
LOANPRO_API_KEY=your_api_key_here
LOANPRO_TENANT_ID=your_tenant_id_here
PORT=8080
# Logging configuration (optional)
LOG_LEVEL=INFO
LOG_FORMAT=TEXT
# Default HTTP transport
go run .
# or explicitly
go run . --transport=http
The server will provide the following endpoints:
POST /mcp - MCP requestsGET / - Server informationGET /health - Health checkgo run . --transport=sse
go run . --transport=stdio
# or using the legacy flag
go run . --stdio
| Transport | Use Case | Communication | Endpoints |
|---|---|---|---|
| HTTP | REST clients, web apps, testing | Standard HTTP POST | /mcp, /, /health |
| SSE | Web browsers, real-time apps | Server-sent events | /sse, / |
| Stdio | MCP clients (Claude Desktop) | Bidirectional stdin/stdout | N/A |
Retrieve comprehensive loan information by ID including balances, payment schedules, and customer details.
Parameters:
loan_id (required): The loan ID to retrieveReturns: Complete loan details with principal balance, payoff amount, next payment info, days past due, status, and customer information.
Search for loans with filters and search terms.
Parameters:
search_term (optional): Search term to match against customer name, display ID, or titlestatus (optional): Filter by loan statuslimit (optional): Maximum number of results (default: 10)Returns: List of matching loans with basic information and financial data.
Retrieve customer information by ID.
Parameters:
customer_id (required): The customer ID to retrieveReturns: Customer details including name, email, phone, and creation date.
Search for customers with a search term.
Parameters:
search_term (optional): Search term to match aga