Lerian MCP Server
The Lerian MCP Server is a unified gateway connecting AI assistants (Claude Desktop, Cursor, etc.) to Lerian's portfolio of financial and data products, enabling documentation lookup, guided learning, SDK code generation, live API access, and cross-product workflow orchestration.
Core capabilities via the lerian tool:
Portfolio Discovery (
operation="discover"orproduct="all"): List and compare all supported products — Midaz, Tracer, Flowker, Reporter, Fetcher, Matcher, Underwriter.Documentation (
operation="docs"): Retrieve official docs for any product/topic, with configurable detail levels (summary, detailed, examples-only).Guided Learning (
operation="learn"): Access tutorials and learning paths tailored by experience level (beginner, intermediate, advanced).SDK Code Generation (
operation="sdk"): Generate Go, TypeScript, or JavaScript code examples for specific use cases.Cross-Product Search (
operation="search",product="all"): Search documentation and examples across all products simultaneously.
Live API interaction:
Contract Discovery (
*-discovertools, e.g.midaz-discover): Inspect live resource schemas, actions, parameters, and examples.API Execution (
*-executetools, e.g.midaz-execute): Execute read or mutating API calls; mutations requireconfirmMutation=trueand amutationReasonfor safety and auditability.
Workflow orchestration:
Cross-Product Workflows (
portfolio-workflowtool): Run multi-product workflows (e.g. fetcher-to-reporter) with stateful sessions and step-by-step guidance.
Product endpoints and authentication are configurable via environment variables or other configuration sources.
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., "@Lerian MCP ServerShow me how to create a workflow in Flowker"
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.
Lerian MCP Server
An MCP gateway for Lerian portfolio discovery, documentation, learning, SDK examples, live product API access, and cross-product workflows.
This server connects MCP clients such as Claude Desktop, Cursor, Windsurf, Continue, and ChatGPT Desktop to the Lerian product portfolio. It gives AI assistants a structured way to discover Lerian products, read official documentation, generate implementation examples, inspect live API contracts, execute configured product APIs, and guide multi-product operational workflows.
Runtime scope: this server is not documentation-only. The unified
leriantool is read-oriented, but product-specific*-executetools can call configured live Lerian APIs. Mutating API calls require explicit confirmation and an audit reason.
2-Minute Setup
Choose your MCP-compatible AI assistant.
Add the server configuration.
Restart the AI app.
Ask: "What can you tell me about Lerian Midaz?"
Claude Desktop
macOS location: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows location: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"lerian": {
"command": "npx",
"args": ["-y", "@lerianstudio/lerian-mcp-server@latest"]
}
}
}Cursor, Windsurf, Continue, ChatGPT Desktop
Add the same MCP server block to your client's MCP configuration:
{
"mcpServers": {
"lerian": {
"command": "npx",
"args": ["-y", "@lerianstudio/lerian-mcp-server@latest"]
}
}
}What You Get
Supported Products
Midaz: financial ledger platform with onboarding, balances, transactions, CRM, and ledger services.
Fetcher: datasource connection, schema discovery, and asynchronous extraction service.
Reporter: template-driven report generation, datasource management, metrics, and artifacts.
Matcher: reconciliation engine for matching Midaz transactions against external systems.
Tracer: transaction validation engine with rules, limits, validations, and auditability.
Flowker: workflow orchestration platform for providers, executors, webhooks, and execution flows.
Underwriter: jurisdiction-aware lending surface for loan products and schedule preview.
All: portfolio-wide discovery, documentation search, and comparison.
Core Capabilities
Portfolio discovery through
lerianwithoperation="discover".Documentation lookup through
lerianwithoperation="docs".Guided learning through
lerianwithoperation="learn".SDK examples through
lerianwithoperation="sdk".Cross-product search through
lerianwithoperation="search".Live API contract discovery through product-specific
*-discovertools.Live API execution through product-specific
*-executetools.Cross-product workflows through
portfolio-workflow.Prompt-based guidance for onboarding, learning, API use, and operational workflows.
Runtime Tool Surface
The server exposes a small core plus live API pairs for each supported product.
Core Tools
lerian: unified portfolio tool for docs, learning, SDK examples, discovery, and search.portfolio-workflow: cross-product workflow discovery, planning, stateful sessions, and step execution.
Live API Tools
midaz-discoverandmidaz-executefetcher-discoverandfetcher-executereporter-discoverandreporter-executematcher-discoverandmatcher-executetracer-discoverandtracer-executeflowker-discoverandflowker-executeunderwriter-discoverandunderwriter-execute
Use the matching *-discover tool before calling a *-execute tool. Discovery returns resources, actions, path parameters, query parameters, body schemas, examples, and execution hints.
The lerian Tool
The lerian tool is the primary read-oriented entry point.
Tool: lerian
Parameters:
product midaz | fetcher | reporter | matcher | tracer | flowker | underwriter | all
operation discover | docs | learn | sdk | search
topic Topic to inspect, learn, or search
language go | typescript | javascript, for SDK examples
useCase Specific implementation scenario for SDK examples
experienceLevel beginner | intermediate | advanced
format summary | detailed | examples-only
includeExamples true | false
maxResults 1-50, for searchExample:
{
"product": "midaz",
"operation": "learn",
"topic": "transactions",
"experienceLevel": "beginner"
}Live API Workflow
Live API access is intentionally two-step.
Inspect the product surface:
{
"intent": "list-resources"
}Inspect a specific action contract:
{
"intent": "describe-action",
"resource": "transactions",
"action": "create"
}Execute with the exact contract returned by discovery:
{
"resource": "transactions",
"action": "create",
"pathParams": {
"organizationId": "...",
"ledgerId": "..."
},
"body": {
"description": "Example transaction"
},
"confirmMutation": true,
"mutationReason": "Create example transaction requested by operator"
}Mutating live API actions require:
confirmMutation: truemutationReasonwith a human-readable audit reason
Cross-Product Workflows
Use portfolio-workflow when the task spans multiple Lerian products.
Current workflows:
fetcher-to-reporter: validate extraction mappings with Fetcher, then generate or inspect Reporter reports.matcher-to-fetcher-to-midaz: configure Matcher reconciliation, use Matcher discovery over Fetcher, and inspect Midaz ledger-side data.
Supported intents:
list-workflowsdescribe-workflowplancreate-sessionget-sessionlist-sessionsexecute-stepexecute-next
Workflow sessions return an opaque sessionToken. Keep it private.
Configuration
The server works immediately for documentation and discovery. Live API execution requires reachable product services and, where applicable, tokens or API keys.
Configuration sources, in priority order:
Command-line
--configor--config-fileEnvironment variables
./lerian-mcp-config.json./midaz-mcp-config.json~/.lerian/mcp-config.json~/.midaz/mcp-config.json~/.config/lerian/mcp-config.json~/.config/midaz/mcp-config.jsonPlatform global config paths
Create or update configuration interactively:
npx -y -p @lerianstudio/lerian-mcp-server@latest lerian-mcp-configCommon environment variables:
LERIAN_DOCS_URL=https://docs.lerian.studio
LOG_LEVEL=info
MIDAZ_ONBOARDING_URL=http://localhost:3000
MIDAZ_TRANSACTION_URL=http://localhost:3001
MIDAZ_CRM_URL=http://localhost:3002
MIDAZ_LEDGER_URL=http://localhost:3003
MIDAZ_AUTH_TOKEN=...
FETCHER_MANAGER_URL=http://localhost:4006
FETCHER_AUTH_TOKEN=...
REPORTER_MANAGER_URL=http://localhost:4005
REPORTER_AUTH_TOKEN=...
MATCHER_BASE_URL=http://localhost:4018
MATCHER_AUTH_TOKEN=...
TRACER_BASE_URL=http://localhost:4020
TRACER_API_KEY=...
FLOWKER_BASE_URL=http://localhost:4021
FLOWKER_AUTH_TOKEN=...
FLOWKER_API_KEY=...
UNDERWRITER_BASE_URL=http://localhost:8080
UNDERWRITER_AUTH_TOKEN=...Safety Model
Live execution is opt-in through product-specific
*-executetools.Mutating methods require explicit confirmation and a mutation reason.
Product API base URLs must use
httporhttps.Non-localhost HTTP URLs are rejected; HTTPS is required outside local development.
URLs with embedded credentials are rejected.
Authorization and API-key headers are protected from arbitrary override.
Binary upload and download sizes are bounded by configurable limits.
Secrets are generated and managed locally under
~/.lerian/secrets.jsonwhen needed.
Example Conversations
Portfolio Discovery
You: "What Lerian products can this MCP help with?"
AI: Uses lerian with product="all", operation="discover".
Learning Path
You: "I'm new to Tracer. Teach me how validation rules work."
AI: Uses lerian with product="tracer", operation="learn", topic="rules".
SDK Example
You: "Show me Go code for creating a Midaz ledger."
AI: Uses lerian with product="midaz", operation="sdk", language="go".
Live API Contract Discovery
You: "Inspect the contract for creating a Reporter template."
AI: Uses reporter-discover before any reporter-execute call.
Cross-Product Workflow
You: "Guide me through validating Fetcher mappings before generating a report."
AI: Uses portfolio-workflow with workflow="fetcher-to-reporter".
Development
Requires Node.js >=20.19.0.
npm ci
npm run build
npm testUseful scripts:
npm run dev: run the TypeScript entrypoint withts-node.npm run build: compile todist/and mark binaries executable.npm run lint: run ESLint.npm run typecheck: run TypeScript without emitting files.npm test: run Node tests plus the basic server test.npm run docs: generate TypeDoc output intodocs/.
Documentation
Package Information
npm package:
@lerianstudio/lerian-mcp-serverCurrent package version:
3.4.0Runtime: Node.js ESM
MCP SDK:
@modelcontextprotocol/sdkLicense: Apache-2.0
Repository: github.com/lerianstudio/lerian-mcp-server
Architecture Summary
MCP Client
-> stdio transport
-> McpServer from @modelcontextprotocol/sdk
-> core tools and prompts
-> product adapters
-> product routers and schema registries
-> configured Lerian product APIsPrimary layers:
Transport: MCP JSON-RPC over stdio.
Server bootstrap: security, secrets, docs manifest, logging, client detection.
Core tools:
lerianandportfolio-workflow.Product adapters: discover/execute pairs for supported products.
Schema registries: resource/action contracts for API surfaces.
HTTP execution: validated URL construction, request execution, response parsing, and error classification.
Workflow orchestration: guided, stateful multi-product flows.
Troubleshooting
Server Not Starting
Check Node.js version:
node --versionRun manually:
npx -y @lerianstudio/lerian-mcp-server@latestCheck local secrets:
ls -la ~/.lerian/secrets.jsonLive API Calls Failing
Use the product
*-discovertool first.Verify the relevant base URL and token/API key are configured.
Confirm non-local remote URLs use HTTPS.
For mutations, include
confirmMutation=trueandmutationReason.Check whether the target product service is reachable from the MCP runtime.
Tool Not Responding In The Client
Restart the MCP client after configuration changes.
Confirm MCP is enabled in the client.
Enable logging with
LOG_LEVEL=debugif needed.Check
./logs/when logging is enabled.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
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/LerianStudio/lerian-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server