← aivoicecall.net

INDIVIDUAL MCP TOOL

list_runs

List recent extraction runs, newest first (run_id, url, status, row_count).

aivoicecall.netnone authenticationAvailability not checked

LIVE ENDPOINT

https://webscrape.aivoicecall.net/mcp

No auth detected

Connect to this endpoint to inspect the live schema for list_runs and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests retrieving external content.

Parent server

aivoicecall.net

CONNECT 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.webscrape]
url = "https://webscrape.aivoicecall.net/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "webscrape": {
      "type": "http",
      "url": "https://webscrape.aivoicecall.net/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: webscrape
Remote MCP URL: https://webscrape.aivoicecall.net/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": {
    "webscrape": {
      "url": "https://webscrape.aivoicecall.net/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "webscrape": {
      "type": "http",
      "url": "https://webscrape.aivoicecall.net/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "webscrape",
  "transport": "streamable-http",
  "url": "https://webscrape.aivoicecall.net/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_recipes — List the pre-built, reusable extractors (recipes) this demo ships — each with the page it targets and what it pulls.
  • get_run — Get one run's status and its extracted rows (already masked).
  • analyze_page — Inspect a URL WITHOUT extracting: report the detected page type and the smartest extraction strategy (e.g.
  • run_recipe — Run a saved recipe to completion and return its extracted rows.
  • extract — The headline verb: turn any public page into structured JSON rows.