Server data from the Official MCP Registry
Generate crypto QR codes (BTC, ETH, SOL, USDC, USDT, EURC) and manage payment sessions.
Generate crypto QR codes (BTC, ETH, SOL, USDC, USDT, EURC) and manage payment sessions.
Well-structured MCP server with proper authentication, clear permission scoping, and good security practices. The API key is correctly handled via environment variables, permissions match the server's crypto payment functionality, and code quality is solid. Minor findings around input validation and error handling do not materially impact security. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.
3 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-toreador-mcp-server": {
"args": [
"-y",
"@toreador/mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
Official Model Context Protocol server for Toreador. Lets Claude Desktop, Cursor, and any other MCP-capable assistant generate crypto QR codes and manage payment sessions on your behalf.
⚠️ Requires a Pro plan API key (
tdr_...) from your Toreador dashboard. The MCP server runs locally and uses your key to callhttps://toreador.io/api/v1/public.
| Tool | What it does |
|---|---|
toreador_generate_qr | Generate a QR code for native tokens (BTC, ETH, SOL, POL) or Solana SPL (USDC on Solana). Returns the on-chain payment URI and a base64 PNG data URI. |
toreador_create_session | Create a hosted payment session for ERC-20 stablecoins (USDC, USDT, EURC) on Ethereum, Polygon or Base. Returns a session ID, security code and a hosted payment URL. |
toreador_get_payment_status | Poll the status of an ERC-20 payment session: pending / submitted / confirming / completed / expired / failed. |
toreador_list_history | List the 50 most recent QR code generations. |
toreador_list_sessions | List the 50 most recent ERC-20 payment sessions. |
Edit Claude Desktop's config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%/Claude/claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonAdd the toreador entry under mcpServers:
{
"mcpServers": {
"toreador": {
"command": "npx",
"args": ["-y", "@toreador/mcp-server"],
"env": {
"TOREADOR_API_KEY": "tdr_your_key_here"
}
}
}
}
Restart Claude Desktop. You should see the 5 Toreador tools in the tools menu.
In Cursor settings → MCP → "Add new MCP server", paste:
{
"command": "npx",
"args": ["-y", "@toreador/mcp-server"],
"env": { "TOREADOR_API_KEY": "tdr_..." }
}
Once installed, try these prompts in your MCP client:
The assistant will pick the right tool, call Toreador, and return the result — including the QR code data URI which most clients can render inline.
| Environment variable | Default | Description |
|---|---|---|
TOREADOR_API_KEY | required | Your Pro plan API key. Format: tdr_.... |
TOREADOR_BASE_URL | https://toreador.io/api/v1/public | Override the API base URL (useful for testing). |
TOREADOR_TIMEOUT_MS | 30000 | Per-request timeout in milliseconds. |
toreador.io.git clone https://github.com/Bentonabento/toreador-sdk.git
cd toreador-sdk/mcp
npm install
npm run build
TOREADOR_API_KEY=tdr_... node dist/index.js
The server will boot, print [toreador-mcp] ready (5 tools registered) to
stderr, and wait for MCP requests on stdin.
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
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.