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

@agentreadyweb/mcp

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agentreadyweb/mcp

Query any website's documentation with cited, multi-page answers via MCP. Submit any public URL and ask questions in natural language. Covers developer tools, APIs, cloud platforms, frameworks, databases, and more. Handles JS-rendered SPAs that web_fetch

Source
npmnpm
Version
1.0.9
Version published
Weekly downloads
329
126.9%
Maintainers
1
Weekly downloads
 
Created
Source

@agentreadyweb/mcp

smithery badge

Connect any MCP client to AgentReady — a hosted service that makes any website queryable by AI agents.

Claude Desktop

Add this to your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "agentready": {
      "command": "npx",
      "args": ["-y", "@agentreadyweb/mcp"]
    }
  }
}

Restart Claude Desktop. You'll have three tools available:

  • submit_site — index any website so it can be queried
  • list_sites — see all indexed websites
  • ask_site — query any site by domain

Cursor

Add to ~/.cursor/mcp.json:

{
  "agentready": {
    "command": "npx",
    "args": ["-y", "@agentreadyweb/mcp"]
  }
}

WebMCP (no install)

If your client supports HTTP transport (Claude.ai, recent Claude Desktop, Cursor), connect directly by URL — no npm required:

https://www.agentready.it.com/api/mcp

Available tools

submit_site

submit_site(url: string)

Index a website with AgentReady. Takes ~60 seconds. Handles static sites, server-rendered pages, and JavaScript-heavy SPAs via fallback rendering. Once done, query it with ask_site.

Example: submit_site("https://docs.example.com")

list_sites

Lists all websites currently indexed by AgentReady with their titles and summaries.

ask_site

ask_site(domain: string, query: string)

Ask a question about any website and get a cited answer grounded in its content. If the site isn't indexed yet, AgentReady will crawl and index it automatically before answering.

Example: ask_site("example.com", "What does this site do?")

How indexing works

AgentReady uses a layered approach to handle any public website:

  • llms.txt / llms-full.txt — if the site publishes one, it's used as a high-quality structured content source
  • Standard HTML crawl — fetches up to 10 pages via sitemap or link crawling, extracts clean text
  • __NEXT_DATA__ extraction — for Next.js apps, parses server-side rendered data embedded in the HTML
  • Jina Reader fallback — for JS-only SPAs that return empty HTML, uses a remote rendering service to extract content

Sites behind authentication or with no public HTML content cannot be indexed.

Environment variables

VariableDefaultDescription
AGENTREADY_MCP_URLhttps://www.agentready.it.com/api/mcpOverride the MCP endpoint (for self-hosted)

Keywords

mcp

FAQs

Package last updated on 13 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