Site MCP
Turn any public website into an MCP server for agents to search, read and navigate.
Should I use this
Quality & Safety
Findings (8)
- HIGH
- MEDIUMin list_pages
- MEDIUMin read_page
- MEDIUMin search_site
- MEDIUMin get_site_info
- MEDIUMin get_page_info
- MEDIUMin list_links
- LOWin list_links
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
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-httpWhat it can do
Tool inventory
Tools (6)
🟢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
Evidence