Server data from the Official MCP Registry
Official Billium MCP server: manage crypto invoices, payments, and webhooks from any MCP host.
Official Billium MCP server: manage crypto invoices, payments, and webhooks from any MCP host.
Valid MCP server (2 strong, 1 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
9 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Set these up before or after installing:
Environment variable: BILLIUM_API_KEY
Environment variable: BILLIUM_MERCHANT_ID
Environment variable: BILLIUM_BASE_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-billiumhq-billium": {
"env": {
"BILLIUM_API_KEY": "your-billium-api-key-here",
"BILLIUM_BASE_URL": "your-billium-base-url-here",
"BILLIUM_MERCHANT_ID": "your-billium-merchant-id-here"
},
"args": [
"-y",
"@billium/mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Official client libraries for Billium — non-custodial crypto payments, invoices, and webhooks.
| Package | Version | Description |
|---|---|---|
@billium/node | Node.js SDK — invoices, webhook signature verification, webhook management | |
@billium/mcp | MCP server — manage invoices and webhooks from Claude, Cursor, and any MCP host |
Additional language SDKs will live as siblings under packages/ as they ship.
npm install @billium/node
import { Billium } from '@billium/node';
const billium = new Billium({
apiKey: process.env.BILLIUM_API_KEY,
merchantId: process.env.BILLIUM_MERCHANT_ID,
webhookSecret: process.env.BILLIUM_WEBHOOK_SECRET,
});
const invoice = await billium.invoices.create(
{ name: 'Order #1234', rawAmount: 99.99 },
{ idempotencyKey: crypto.randomUUID() },
);
See packages/node/README.md for the full Node.js SDK reference.
.
├── packages/
│ ├── node/ # @billium/node — TypeScript Node.js SDK
│ │ ├── src/ # Source
│ │ ├── tests/ # Vitest test suite
│ │ ├── README.md # Public-facing docs (rendered on npmjs.com)
│ │ └── CHANGELOG.md # Per-release notes
│ └── mcp/ # @billium/mcp — Model Context Protocol server
│ ├── src/ # Server + tool definitions
│ ├── tests/ # Vitest in-memory round-trip suite
│ └── README.md # Host setup (Claude Code, Cursor, …)
└── .github/
├── workflows/ # CI + release automation
├── ISSUE_TEMPLATE/ # Bug + feature request forms
└── CODEOWNERS # Review requirements
This is an npm workspace. Run scripts from the repository root:
npm install # installs all workspace packages
npm run lint # typechecks every package (src + tests)
npm test # runs every package's test suite
npm run build # builds every package
To work on a specific package, you can also cd packages/node && npm <script>.
Releases are published to npm by GitHub Actions when a v*.*.* tag is pushed:
packages/node/package.json#version and packages/node/src/version.ts#SDK_VERSION to the new version (CI verifies they match).packages/node/CHANGELOG.md describing the changes.main.git tag v1.0.1 && git push origin v1.0.1.npm publish with provenance.Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.