New:Socket for Asana Is Now Available.Learn more
Get Started

@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.12
Version published
Weekly downloads
57
-46.23%
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"
      }
    }
  }
}

Claude Desktop: paste the same JSON into claude_desktop_config.json (Settings → Developer → Edit Config). See MCP setup — Claude Desktop and examples/claude-mcp.json.

Corporate Windows / SSL inspection: if npx fails with UNABLE_TO_VERIFY_LEAF_SIGNATURE, install locally and use node — see examples/claude-mcp-local.json / 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, English by default). Review titles and snippets first.
  • metalift_scrape — fetches page content for URLs you choose (1+ credits per URL). Default response_detail=compact (~16k chars, no link lists). Use standard for full articles or full for raw JSON with all links.

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, response_detail=compact; use standard / full for more)
metalift_batch_scrapeScrape multiple URLs (same response_detail; default compact)
metalift_crawlCrawl a website
metalift_mapDiscover site URLs from page HTML links
metalift_sitemapFetch XML sitemap URLs (robots.txt / sitemap.xml)
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 05 Jul 2026

Related posts