phone

Solid

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.

AI & Automation 465 stars 50 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
89
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Phone & Voice Two namespaces in one tool: **`/v1/phone/*`** for number intelligence + provisioning, **`/v1/voice/*`** for outbound AI calls. Pay per call in USDC. 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. ## How to Call from MCP ```ts 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}` }) ``` ## Endpoint Catalog ### Phone intelligence + numbers (`/v1/phone/*`) | Path | Body | Price | Effect | |---|---|---|---| | `phone/lookup` | `{ phoneNumber }` | $0.01 | Carrier, line type (mobile/landline/VoIP) | | `phone/lookup/fraud` | `{ phoneNumber }` | $0.05 | + SIM-swap signals, call-forward...

Details

Author
BlockRunAI
Repository
BlockRunAI/blockrun-mcp
Created
5 months ago
Last Updated
2 days ago
Language
TypeScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category