search-mcp
Web search and clean-text fetch MCP server (Tavily-powered, SSRF-guarded).
Should I use this
Quality & Safety
A
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
~229Tokens (tool definitions)
~1.0 KBTypical response size
Minimal attention impact (0.18% 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": {
"search-mcp": {
"url": "https://search-mcp-tgsn.onrender.com/mcp/"
}
}
}Remote endpoints
https://search-mcp-tgsn.onrender.com/mcp/streamable-httpWhat it can do
Tool inventory
Tools (2)
🟢 Read-only🟡 Write🔴 Delete⚪ Unknown
🟢search_web(query, count)
Search the web and return titles, URLs, and snippets.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search query."
},
"count": {
"default": 5,
"type": "integer",
"description": "Maximum results to return (1-10, default 5)."
}
},
"required": [
"query"
],
"additionalProperties": false
}Output Schema
{
"type": "object",
"properties": {
"result": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
},
"required": [
"result"
],
"x-fastmcp-wrap-result": true
}🟢fetch_url(url)
Fetch a public http(s) URL and return its main text content as plain text.
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The http(s) URL to fetch. Private/loopback hosts are rejected."
}
},
"required": [
"url"
],
"additionalProperties": false
}Output Schema
{
"type": "object",
"properties": {
"result": {
"type": "string"
}
},
"required": [
"result"
],
"x-fastmcp-wrap-result": true
}Community
Evidence
Recent observations
verifiedversion not recorded2 tools