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., "@Cresium MCP ServerCheck my current wallet balances and list my most recent transactions"
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.
Cresium MCP Server
MCP (Model Context Protocol) server the Cresium API. Enables AI tools like Claude Code and Claude Desktop to manage transactions, payments, invoices, and balances through the Cresium Partner API (V3).
Prerequisites
You need a Cresium partner account with:
API Key (
apiKey)Secret (
secret)Company ID (
companyId)
These are available from the Cresium Dashboard under your partner settings.
Installation
Claude Code
claude mcp add cresium-server \
-e CRESIUM_API_KEY=your_api_key \
-e CRESIUM_SECRET=your_secret \
-e CRESIUM_COMPANY_ID=your_company_id \
-- node /absolute/path/to/cresium-mcp-server/build/index.jsClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"cresium": {
"command": "node",
"args": ["/absolute/path/to/cresium-mcp-server/build/index.js"],
"env": {
"CRESIUM_API_KEY": "your_api_key",
"CRESIUM_SECRET": "your_secret",
"CRESIUM_COMPANY_ID": "your_company_id"
}
}
}
}Build from source
git clone <repo-url>
cd cresium-mcp-server
npm install
npm run buildEnvironment Variables
Variable | Required | Description |
| Yes | Partner API key |
| Yes | Partner secret for HMAC signing |
| Yes | Company ID to operate on |
Available Tools
Tool | Description |
| Check API availability |
| Get wallet balances (balance, locked, invested, available) |
| Search transactions with filters and pagination |
| Get a single transaction by ID |
| Look up a CBU/CVU/alias to get the address ID |
| Create a transfer preview (does not execute) |
| Confirm a previewed transaction |
| Request signer approval for a transaction |
| Create payments (accounts payable) |
| Create invoices (accounts receivable) |
| List all company payments |
| List all company invoices |
Typical Workflow
Send a transfer
Look up the destination:
lookup_bank_addresswith the CBU/CVU/aliasCreate a preview:
create_transfer_previewwith the address ID, amount, and currencyRequest approval:
create_signature_requestwith the transaction ID (signers approve from Dashboard)
Check balances and transactions
Get balances:
get_balanceto see available funds per currencySearch transactions:
search_transactionswith date or status filtersGet details:
get_transactionwith a specific transaction ID
Authentication
All requests are signed using HMAC-SHA256. The server handles this transparently:
signature = HMAC-SHA256("{timestamp}|{METHOD}|{path}|{body}", secret) → base64Headers sent on every request: x-api-key, x-company-id, x-timestamp, x-signature
License
MIT