Connect Claude & GPT directly to the web.Try it now
Integrations

MCP server

Ilmenite ships a native Model Context Protocol server. Point Claude Desktop, Cursor, Zed, or any MCP-aware client at it, and your LLM can scrape, crawl, map, extract, and search from its tool-call loop.

Available tools

  • browser_scrape — fetch one URL, return clean markdown.
  • browser_crawl — walk a site, return all pages as markdown.
  • browser_map — discover all URLs on a site via sitemap.
  • browser_extract — extract structured JSON data from a URL.
  • browser_search — Google search + optionally scrape results.

Connect from Claude Desktop

Add the Ilmenite server to claude_desktop_config.json:

{
  "mcpServers": {
    "ilmenite": {
      "command": "ilmenite-mcp"
    }
  }
}

Restart Claude Desktop. Your new tools appear in the tool picker.

Hosted MCP (SSE)

If your client supports Server-Sent Events, you can connect directly without running a local process:

{
  "mcpServers": {
    "ilmenite": {
      "url": "https://mcp.ilmenite.dev/sse",
      "headers": {
        "Authorization": "Bearer il_live_..."
      }
    }
  }
}

Run your own

docker run -p 3333:3333 \
  -e ILMENITE_API_KEY=il_live_... \
  ilmenite/mcp-server:latest