General Tools
qrblox.com
Enables Qrblox merchants to manage QR codes, look up and register AI voice agent directories, and retrieve merchant profile information.
ENDPOINT 1
https://api.qrblox.com/mcp/v1
MCP server metadata
- Name
- qrblox-mcp
- Version
- 0.1.0
Qrblox maintains the Voice Agent Phone Book (https://qrblox.com/phone-book) — a public directory of businesses' AI voice agents. Agents can look up a business by website domain (qrblox.voice_agent.lookup) or register a business's voice agent phone number for a domain (qrblox.voice_agent.register) using these tools. Qrblox also gives merchants agent-operable tools to create and track QR codes, audio codes, menus, scan challenges, and scan analytics. JSON-RPC 2.0 (Model Context Protocol) endpoint; authenticate with a Bearer sk-qrblox- API key minted at https://app.qrblox.com/settings.
Known tools 14
qrblox.pingConfirm that the Qrblox MCP server is reachable for the authenticated merchant.
Inferred read-onlyqrblox.voice_agent.lookupLook up a business in the Qrblox Voice Agent Phone Book by website domain — returns their confirmed AI voice agent phone number if registered.
Inferred read-onlyqrblox.voice_agent.registerRegister a business's AI voice agent phone number and domain in the Qrblox Voice Agent Phone Book directory (free; creates a backlink page at qrblox.com/d/<domain> once approved).
Inferred read-onlyqrblox.merchant.get_profileGet the merchant workspace attached to this user or API key.
Inferred read-onlyqrblox.qr.createCreate a finished QR code: returns a hosted PNG (qrImageUrl) plus, for dynamic codes, a qrb.dev dynamic link you can re-point later.
Potential side effectsqrblox.qr.updateEdit an existing QR code: re-point the destination URL (dynamic codes redirect immediately, no reprint), change the scan sound, or rename it.
Potential side effectsqrblox.qr.get_analyticsPer-code scan report from the Qrblox analytics pipeline: total scans, daily counts, and every scan with date and city/state.
Inferred read-onlyqrblox.audio.createCreate a draft audio code payload that can later be published as a near-ultrasonic sharing experience.
Potential side effectsqrblox.menu.createCreate a merchant menu that can be connected to QR codes, audio codes, and scan experiences.
Potential side effectsqrblox.challenge.createCreate a draft scan challenge, streak, game, or loyalty campaign.
Potential side effectsqrblox.analytics.scan_summarySummarize recent scan activity for a merchant workspace.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.qrblox-mcp]
url = "https://api.qrblox.com/mcp/v1"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"qrblox-mcp": {
"type": "http",
"url": "https://api.qrblox.com/mcp/v1"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: qrblox-mcp
Remote MCP URL: https://api.qrblox.com/mcp/v1
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"qrblox-mcp": {
"url": "https://api.qrblox.com/mcp/v1"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"qrblox-mcp": {
"type": "http",
"url": "https://api.qrblox.com/mcp/v1"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "qrblox-mcp",
"transport": "streamable-http",
"url": "https://api.qrblox.com/mcp/v1"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://app.qrblox.com/api/mcp
MCP server metadata
- Name
- qrblox-mcp
- Version
- 0.1.0
Qrblox maintains the Voice Agent Phone Book (https://qrblox.com/phone-book) — a public directory of businesses' AI voice agents. Agents can look up a business by website domain (qrblox.voice_agent.lookup) or register a business's voice agent phone number for a domain (qrblox.voice_agent.register) using these tools. Qrblox also gives merchants agent-operable tools to create and track QR codes, audio codes, menus, scan challenges, and scan analytics. JSON-RPC 2.0 (Model Context Protocol) endpoint; authenticate with a Bearer sk-qrblox- API key (mint at https://create.qrblox.com/settings/api-keys).
Known tools 14
qrblox.pingConfirm that the Qrblox MCP server is reachable for the authenticated merchant.
Inferred read-onlyqrblox.voice_agent.lookupLook up a business in the Qrblox Voice Agent Phone Book by website domain — returns their confirmed AI voice agent phone number if registered.
Inferred read-onlyqrblox.voice_agent.registerRegister a business's AI voice agent phone number and domain in the Qrblox Voice Agent Phone Book directory (free; creates a backlink page at qrblox.com/d/<domain> once approved).
Inferred read-onlyqrblox.merchant.get_profileGet the merchant workspace attached to this user or API key.
Inferred read-onlyqrblox.qr.createCreate a finished QR code: returns a hosted PNG (qrImageUrl) plus, for dynamic codes, a qrb.dev dynamic link you can re-point later.
Potential side effectsqrblox.qr.updateEdit an existing QR code: re-point the destination URL (dynamic codes redirect immediately, no reprint), change the scan sound, or rename it.
Potential side effectsqrblox.qr.get_analyticsPer-code scan report from the Qrblox analytics pipeline: total scans, daily counts, and every scan with date and city/state.
Inferred read-onlyqrblox.audio.createCreate a draft audio code payload that can later be published as a near-ultrasonic sharing experience.
Potential side effectsqrblox.menu.createCreate a merchant menu that can be connected to QR codes, audio codes, and scan experiences.
Potential side effectsqrblox.challenge.createCreate a draft scan challenge, streak, game, or loyalty campaign.
Potential side effectsqrblox.analytics.scan_summarySummarize recent scan activity for a merchant workspace.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.qrblox-mcp]
url = "https://app.qrblox.com/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"qrblox-mcp": {
"type": "http",
"url": "https://app.qrblox.com/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: qrblox-mcp
Remote MCP URL: https://app.qrblox.com/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"qrblox-mcp": {
"url": "https://app.qrblox.com/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"qrblox-mcp": {
"type": "http",
"url": "https://app.qrblox.com/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "qrblox-mcp",
"transport": "streamable-http",
"url": "https://app.qrblox.com/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.