← Back to Skills Marketplace
danecodes

botcall

by Dane Hesseldahl · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
303
Downloads
1
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install botcall
Description
Phone numbers for AI agents. Provision numbers, receive SMS, extract verification codes. Use when you need to sign up for services, receive 2FA codes, or han...
README (SKILL.md)

botcall - Phone Numbers for AI Agents

Provision phone numbers and receive SMS verification codes.

Setup

  1. Get an API key at https://botcall.io
  2. Authenticate:
botcall auth login --api-key bs_live_YOUR_KEY

Commands

Check your plan and usage

botcall usage

Provision a phone number

botcall provision
botcall provision --area-code 206  # Seattle area code

List your numbers

botcall list

View received messages

botcall inbox
botcall inbox --limit 20

Wait for verification code

botcall get-code              # Wait up to 120s
botcall get-code --timeout 60 # Custom timeout

Returns just the code (e.g., 847291) for easy parsing.

Release a number

botcall release \x3Cnumber-id>

Upgrade plan

botcall upgrade starter  # $9/mo - 1 number, 100 SMS
botcall upgrade pro      # $29/mo - 5 numbers, 500 SMS

Manage billing

botcall billing  # Opens Stripe portal

Example: Sign up for a service

# 1. Get a number
botcall provision --area-code 415
# Output: +14155551234

# 2. Use number to sign up (your agent does this)

# 3. Wait for verification code
CODE=$(botcall get-code --timeout 120)
echo "Code received: $CODE"

# 4. Enter code to complete signup

MCP Integration

For Claude Desktop/Cursor, add to your MCP config:

{
  "mcpServers": {
    "botcall": {
      "command": "npx",
      "args": ["@botcallio/mcp"],
      "env": {
        "BOTCALL_API_KEY": "bs_live_YOUR_KEY"
      }
    }
  }
}

Pricing

  • Free: No numbers (signup only)
  • Starter ($9/mo): 1 number, 100 SMS
  • Pro ($29/mo): 5 numbers, 500 SMS

Links

Usage Guidance
This skill appears to be what it says: it installs a botcall CLI and uses a BOTCALL_API_KEY to provision phone numbers and read SMS codes. Before installing: (1) verify the npm package and vendor (botcall.io) and inspect the package if you need high assurance; (2) create and use a limited-scope API key and rotate/revoke it if compromised; (3) be aware that the key lets the skill read incoming SMS (which can include sensitive 2FA codes) and may incur billing charges — monitor usage and billing; (4) avoid putting a high-privilege or shared secret into plain MCP configs or shared files; (5) if you do not want the agent to autonomously request numbers or read SMS, restrict skill invocation or require confirmation before use.
Capability Analysis
Type: OpenClaw Skill Name: botcall Version: 1.0.0 The botcall skill provides a legitimate utility for AI agents to provision phone numbers and receive SMS/2FA verification codes via the botcall.io service. The SKILL.md file contains standard documentation for the 'botcall' npm package and its CLI commands, with no evidence of malicious intent, data exfiltration, or prompt injection attacks.
Capability Assessment
Purpose & Capability
Name/description, required binary (botcall), required env var (BOTCALL_API_KEY), and the npm install entry all directly match the stated functionality of provisioning numbers and receiving SMS. No unrelated services, binaries, or credentials are requested.
Instruction Scope
SKILL.md only instructs the agent to run the botcall CLI commands (provision, inbox, get-code, release, billing, etc.) and to place the API key in the environment or MCP config. It does not instruct the agent to read unrelated files, system secrets, or transmit data to unexpected endpoints. Note: the agent will be used to perform external signups using provisioned numbers (expected for this use case).
Install Mechanism
Install is via an npm package named 'botcall' that creates a 'botcall' binary — this is a standard, traceable package install from the public registry. Installing npm packages executes third-party code, so review the package and its maintainers if you require higher assurance.
Credentials
Only a single API credential (BOTCALL_API_KEY) is required and is declared as the primary credential. This is proportionate to the skill's purpose, but that key grants access to phone numbers and received SMS (which may contain sensitive verification codes), so limit scope/rotation as appropriate.
Persistence & Privilege
The skill does not request always:true or any elevated persistent privileges. Model invocation is allowed (platform default). Be aware that any agent with access to this skill can request numbers and read SMS while the API key is available.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install botcall
  3. After installation, invoke the skill by name or use /botcall
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the botcall skill. - Provision phone numbers for AI agents to receive SMS verification and 2FA codes. - Supports commands to provision numbers, receive SMS, extract verification codes, and manage numbers. - Includes billing and plan management (Free, Starter, Pro). - Integrates with Claude Desktop/Cursor via MCP. - Requires a BOTCALL_API_KEY for use.
Metadata
Slug botcall
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is botcall?

Phone numbers for AI agents. Provision numbers, receive SMS, extract verification codes. Use when you need to sign up for services, receive 2FA codes, or han... It is an AI Agent Skill for Claude Code / OpenClaw, with 303 downloads so far.

How do I install botcall?

Run "/install botcall" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is botcall free?

Yes, botcall is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does botcall support?

botcall is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created botcall?

It is built and maintained by Dane Hesseldahl (@danecodes); the current version is v1.0.0.

💬 Comments