Site MCP

Turn any public website into an MCP server for agents to search, read and navigate.

Should I use this

Quality & Safety

B
Description quality
95%
Schema completeness
75%
Naming quality
100%
Poisoning risk
0%
Permission match
100%
Protocol compliance
100%

Findings (8)

  • HIGHTool poisoning patterns detected
  • MEDIUMTool description contains URL to non-standard domainin list_pages
  • MEDIUMTool description contains URL to non-standard domainin read_page
  • MEDIUMTool description contains URL to non-standard domainin search_site
  • MEDIUMTool description contains URL to non-standard domainin get_site_info
  • MEDIUMTool description contains URL to non-standard domainin get_page_info
  • MEDIUMTool description contains URL to non-standard domainin list_links
  • LOWTool 'list_links' description lacks action verbin list_links

Based on automated analysis of tool definitions and protocol compliance.

Context Cost

~700Tokens (tool definitions)
~657 BTypical response size
Moderate attention impact (0.55% of 128k context)

This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.

Install

One-Click Install

Add this to your `claude_desktop_config.json` file:

{
  "mcpServers": {
    "site-mcp": {
      "url": "https://sitemcp.dev/sitemcp.dev"
    }
  }
}

Remote endpoints

https://sitemcp.dev/sitemcp.devstreamable-http

What it can do

Tool inventory

Tools (6)

🟢 Read-only🟡 Write🔴 Delete⚪ Unknown
🟢list_pages(filter, limit)

List page URLs on https://sitemcp.dev/ (from its sitemap, or links on the homepage).

Input Schema

{
  "type": "object",
  "properties": {
    "filter": {
      "description": "Only return URLs containing this substring",
      "type": "string"
    },
    "limit": {
      "default": 100,
      "type": "integer",
      "minimum": 1,
      "maximum": 500
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}
🟢read_page(path, offset)

Fetch a page from https://sitemcp.dev/ and return its main content as Markdown. Long pages are paginated with offset.

Input Schema

{
  "type": "object",
  "properties": {
    "path": {
      "default": "/",
      "description": "Path like \"/pricing\" or a full URL on sitemcp.dev",
      "type": "string"
    },
    "offset": {
      "default": 0,
      "description": "Character offset for long pages",
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}
🟢search_site(query, max_results)

Search https://sitemcp.dev/ for pages relevant to a query. Returns matching pages with snippets.

Input Schema

{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "minLength": 1
    },
    "max_results": {
      "default": 5,
      "type": "integer",
      "minimum": 1,
      "maximum": 10
    }
  },
  "required": [
    "query"
  ],
  "$schema": "http://json-schema.org/draft-07/schema#"
}
🟢get_site_info

Orientation for https://sitemcp.dev/: title, description, language, sitemaps, robots.txt, pages discovered and search-index status. Call this first.

Input Schema

{
  "type": "object",
  "properties": {},
  "$schema": "http://json-schema.org/draft-07/schema#"
}
🟢get_page_info(path)

Metadata for one page on https://sitemcp.dev/ without its full text: title, description, headings, canonical URL, published and modified dates, content type, language and word count. Use it to decide whether a page is worth reading.

Input Schema

{
  "type": "object",
  "properties": {
    "path": {
      "default": "/",
      "description": "Path like \"/pricing\" or a full URL on sitemcp.dev",
      "type": "string"
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}
🟢list_links(path, scope)

Every link on one page of https://sitemcp.dev/, with its text and whether it stays on the site. Use it to navigate the site instead of guessing URLs.

Input Schema

{
  "type": "object",
  "properties": {
    "path": {
      "default": "/",
      "description": "Path like \"/docs\" or a full URL on sitemcp.dev",
      "type": "string"
    },
    "scope": {
      "default": "all",
      "type": "string",
      "enum": [
        "all",
        "internal",
        "external"
      ]
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Community

Rate this Server

Evidence

Recent observations

verifiedversion not recorded6 tools