- Home
- MCP servers
- Lithic
Lithic
- javascript
2
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mohit-novo-mcp-lithic": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"LITHIC_API_KEY",
"-e",
"LITHIC_API_BASE_URL",
"mcp/lithic"
],
"env": {
"LITHIC_API_KEY": "your_lithic_api_key_here",
"LITHIC_API_BASE_URL": "https://api.lithic.com/v1"
}
}
}
}This MCP server provides read-only access to Lithic banking and card resources through a structured, type-safe interface. By running the Lithic MCP server locally or in Docker, you can query Lithic resources such as cards, accounts, transactions, and more with built-in validation and clear error handling, while keeping access read-only for safety.
How to use
You interact with the Lithic MCP server through a client that communicates using the MCP protocol. Start the server using the provided runtime method, then use your MCP client to request resources by type (for example: card, account, transaction) or to list resources. All queries return structured results with type-safety, and errors are surfaced with meaningful details to help you diagnose issues.
How to install
Prerequisites you need before installation:
Step-by-step setup using Docker (recommended)
npm run docker:build
LITHIC_API_KEY=your_key_here npm run docker:run
Step-by-step setup without Docker (manual)
npm install
npm run build
LITHIC_API_KEY=your_key_here npm start
MCP configuration
Use this MCP configuration to run the Lithic MCP server locally in your MCP environment.
{
"lithic": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "LITHIC_API_KEY",
"-e", "LITHIC_API_BASE_URL",
"mcp/lithic"
],
"env": {
"LITHIC_API_KEY": "your_lithic_api_key_here",
"LITHIC_API_BASE_URL": "https://api.lithic.com/v1"
}
}
}
Available tools
get_resource
Fetch a specific Lithic resource by ID or token.
list_resources
List resources of a given Lithic type, such as card, account, or transaction.