Lithic Banking Integration
STDIOTypeScript implementation for read-only access to Lithic banking and card services.
TypeScript implementation for read-only access to Lithic banking and card services.
A TypeScript implementation of a Model Context Protocol (MCP) server for Lithic API that provides read-only access to Lithic banking and card services.
npm run docker:build
LITHIC_API_KEY=your_key_here npm run docker:run
npm install
npm run build
LITHIC_API_KEY=your_key_here npm start
Add this to your .cursor/mcp.json
or Claude Desktop configuration:
{ "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 the following tools:
get_resource
: Fetch a specific Lithic resource by ID/tokenlist_resources
: List resources of a given typeLITHIC_API_KEY
- Your Lithic API key (required)LITHIC_API_BASE_URL
- Lithic API base URL (default: https://sandbox.lithic.com/v1)For development, you can use the watch mode:
npm run dev
This will automatically rebuild and restart the server when you make changes to the source code.