blockrun-debug
Use when the BlockRun MCP server (@blockrun/mcp) is installed but misbehaving — 'Failed to connect', spawn npx ENOENT, blockrun missing from claude mcp list,…
Use when the user wants phone-number intelligence (lookup, carrier, line type, SIM-swap / call-forwarding fraud signals), US/CA number provisioning (rent a phone number), or outbound AI voice calls (Bland.ai under the hood — schedule, confirm, follow-up). Pay per call in USDC.
$ npx -y skills add BlockRunAI/blockrun-mcp --skill phone --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/phoneContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user wants phone-number intelligence (lookup, carrier, line type, SIM-swap / call-forwarding fraud signals), US/CA number provisioning (rent a phone number), or outbound AI voice calls (Bland.ai under the hood — schedule, confirm, follow-up). Pay per call in USDC.
name: phone description: Use when the user wants phone-number intelligence (lookup, carrier, line type, SIM-swap / call-forwarding fraud signals), US/CA number provisioning (rent a phone number), or outbound AI voice calls (Bland.ai under the hood — schedule, confirm, follow-up). Pay per call in USDC. triggers: - "phone lookup" - "carrier lookup" - "phone number intelligence" - "sim swap" - "call forwarding" - "phone fraud" - "buy phone number" - "rent phone number" - "us phone number" - "ai voice call" - "voice call" - "outbound call" - "appointment confirmation" - "bland.ai"
Two namespaces in one tool: **`/v1/phone/*`** for number intelligence + provisioning, **`/v1/voice/*`** for outbound AI calls. Pay per call in USDC. Any other path is refused before payment — the tool never reaches routes outside these two.
Phone numbers use **E.164 format** — `+` followed by country code and subscriber digits (US: `+1` + 10 digits; UK: `+44` + 10 digits; etc.). The examples below use `<+E.164-number>` as a placeholder — the LLM should substitute the actual number from the user's request, not copy the literal placeholder.
const targetNumber = "<+E.164-number-from-user>" // e.g. user said "call my doctor at 415-..."
// Lookup carrier + line type
blockrun_phone({ path: "phone/lookup", body: { phoneNumber: targetNumber } })
// Buy a 30-day US number
blockrun_phone({ path: "phone/numbers/buy", body: { country: "US", areaCode: "415" } })
// Outbound AI call (requires `from` — see below)
const r = await blockrun_phone({ path: "voice/call", body: {
to: targetNumber,
from: "<+E.164-number-you-own>", // from phone/numbers/buy
task: "Confirm appointment for Friday at 3pm with Dr. Wong.",
voice: "june"
}})
// poll the result (free GET, no body)
blockrun_phone({ path: `voice/call/${r.call_id}` })| Path | Body | Price | Effect | |---|---|---|---| | `phone/lookup` | `{ phoneNumber }` | $0.0110 | Carrier, line type (mobile/landline/VoIP) | | `phone/lookup/fraud` | `{ phoneNumber }` | $0.0510 | + SIM-swap signals, call-forwarding detection | | `phone/numbers/buy` | `{ country?: "US"\|"CA", areaCode? }` | $5.001 | 30-day lease, US or CA | | `phone/numbers/renew` | `{ phoneNumber }` | $5.001 | Extend lease 30 days | | `phone/numbers/list` | `{}` | $0.0020 | Your wallet-owned numbers | | `phone/numbers/release` | `{ phoneNumber }` | free | Return to pool |
| Path | Method | Body | Price | |---|---|---|---| | `voice/call` | POST | `{ to, task, from, voice?, max_duration?, language?, first_sentence?, wait_for_greeting? }` | $0.5410 flat | | `voice/call/{call_id}` | GET (no body) | – | free poll |
> **`from` is REQUIRED and must be a number your wallet owns.** Provision one first with `phone/numbers/buy` ($5, 30-day lease). 400 errors from `voice/call` are almost always missing `from`.
| Field | Required | Default | Notes | |---|---|---|---| | `to` | yes | – | Destination E.164 number | | `task` | yes | – | What the AI should do on the call (10–4000 chars) | | `from` | **yes** | – | Your provisioned BlockRun caller-ID number (from `phone/numbers/buy`) | | `voice` | no | `nat` | `nat` / `josh` / `maya` / `june` / `paige` / `derek` / `florian` | | `max_duration` | no | 5 | Minutes, 1–30 | | `language` | no | `en-US` | Language code, BCP-47 | | `first_sentence` | no | – | Custom opening line for the AI | | `wait_for_greeting` | no | false | Let recipient speak first, then AI starts |
| Voice | Tone | |---|---| | `nat` | Neutral / professional male, default | | `josh` | Friendly male | | `maya` | Warm female | | `june` | Calm professional female | | `paige` | Energetic female | | `derek` | Deep male | | `florian` | European-accented male |
blockrun_phone({ path: "phone/lookup/fraud", body: { phoneNumber: "+14155550150" } })Returns carrier, line type, SIM-swap indicator, call-forwarding state. **Cost: $0.0510.**
blockrun_phone({ path: "phone/numbers/buy", body: { country: "US", areaCode: "415" } })
// returns { phoneNumber: "+14155550199", expires_at: "..." }Best-effort area code match. **Cost: $5.001 for 30 days.**
// Step 0 (one-time): provision a number you'll use as caller ID
const { phoneNumber: myNumber } = await blockrun_phone({
path: "phone/numbers/buy", body: { country: "US", areaCode: "415" }
}) // $5.001, 30-day lease
// Step 1: place the call (from is REQUIRED)
const r = await blockrun_phone({ path: "voice/call", body: {
to: "+14155550100",
from: myNumber,
task: "Call Dr. Wong's office. Confirm the appointment for Sarah Chen on Friday May 24th at 3pm. If the time isn't available, ask for the next opening on Friday afternoon and report back.",
voice: "june",
max_duration: 5,
wait_for_greeting: true
}})
// returns { call_id: "call_abc..." } — call runs async
// Poll until done
while (true) {
const status = await blockrun_phone({ path: `voice/call/${r.call_id}` })
if (status.status === "completed") {
console.log(status.summary, status.transcript)
break
}
await new Promise(r => setTimeout(r, 5000))
}**Cost: $0.5410 flat for the call.** Status polling is free.
const { numbers } = await blockrun_phone({ path: "phone/numbers/list", body: {} })
// Release the oldest
await blockrun_phone({ path: "phone/numbers/release", body: { phoneNumber: numbers[0].phoneNumber } })Live data for AI agents — search, research, markets, crypto, X/Twitter. Pay-per-call via x402 micropayments.
Repo: BlockRunAI/blockrun-mcp
Use when the BlockRun MCP server (@blockrun/mcp) is installed but misbehaving — 'Failed to connect', spawn npx ENOENT, blockrun missing from claude mcp list,…
Use when asked to install, add, configure, or set up the BlockRun MCP server (@blockrun/mcp) in Claude Code, Claude Desktop, Cursor, Windsurf, Codex CLI, Grok…
Use when the BlockRun MCP server prints 'Update available', when asked to upgrade, update, or pin @blockrun/mcp, when a fix 'should be in the new version' but…
Pay-per-call access to AI models, real-time data, media generation and multi-chain RPC over x402 micropayments (USDC on Base or Solana). No API keys, no…
Use for any crypto data question — token/coin prices, FX, commodities, stocks, OHLC history, DEX pairs and liquidity, DeFi TVL, yield/APY pools, or raw…
Use when researching products, finding academic papers, discovering competitors, reading webpage content, or getting cited answers grounded in real web…