{
"mcpServers": {
"loanpro-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 117 days ago. 2 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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