🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@metalift/mcp

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@metalift/mcp

Metalift MCP server for AI agents

Source
npmnpm
Version
1.0.10
Version published
Weekly downloads
205
115.79%
Maintainers
1
Weekly downloads
 
Created
Source

@metalift/mcp

Metalift MCP server for AI agents. Exposes scrape, crawl, map, and batch tools over stdio for Cursor, Claude Desktop, and other MCP clients.

What is Metalift?

Metalift Cloud is a hosted web context platform — scrape, crawl, and map sites into LLM-ready markdown for AI agents. This MCP server connects your AI client to the Metalift API.

Get an API key

New accounts receive 1,000 free credits/month. Set METALIFT_API_KEY in your MCP config (see below). Do not commit keys to git.

Install

Published on npm as @metalift/mcp. Default config uses npx:

{
  "mcpServers": {
    "metalift": {
      "command": "npx",
      "args": ["-y", "@metalift/mcp"],
      "env": {
        "METALIFT_API_URL": "https://api.metalift.ai",
        "METALIFT_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Corporate Windows / SSL inspection: if npx fails with UNABLE_TO_VERIFY_LEAF_SIGNATURE, install locally and use node — see examples/cursor-mcp-local.json and MCP setup troubleshooting.

Troubleshooting

ErrorCauseFix
Failed to acquire MessagePortCursor IDE bug on WindowsReload window, restart Cursor — details
UNABLE_TO_VERIFY_LEAF_SIGNATURECorporate SSL inspection blocks npmLocal install + node path — details
401 / 402 at runtimeAuth or billingCheck API key and subscription

Full guide: packages/platform-web/docs/mcp-setup.md.

Web search vs scrape

Search and scrape are separate tools with separate billing:

  • metalift_web_search — returns up to 10 search snippets (2 credits). Review titles and snippets first.
  • metalift_scrape — fetches full page content for URLs you choose (1+ credits per URL).

Do not auto-scrape every search result. See Web search for agent workflow examples.

Environment variables

VariableDescription
METALIFT_API_URLMetalift scrape API base URL (default: https://api.metalift.ai)
METALIFT_API_KEYBearer token for authenticated API access

Tools

ToolDescription
metalift_scrapeScrape a single URL (default: fast direct static markdown; use strategy: "auto" for WAF/SPA/retail)
metalift_batch_scrapeScrape multiple URLs
metalift_crawlCrawl a website
metalift_mapDiscover site URLs
metalift_web_searchWeb search — top 10 SERP results (title, url, snippet). 2 credits per search. Does not fetch page content; use metalift_scrape separately for URLs you need
metalift_job_statusPoll async jobs
metalift_list_strategiesList scrape strategies
metalift_warm_sessionWarm WAF/retail cookies
metalift_list_sessionsList stored domain sessions

FAQs

Package last updated on 04 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts