trailsearch-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@trailsearch-mcpsearch the web for self-hosted AI gateway providers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
trailsearch-mcp
MCP server dla self-hostowanego TrailSearch / open-tavily (jianjungki/tavily-open) — API kompatybilne z Tavily, oparte o SearXNG.
Gotowe MCP (tavily-ai/tavily-mcp, kshern/mcp-tavily) hardkodują
https://api.tavily.com i nie obsługują własnego base URL — ten pakiet
wskazuje na Twoją instancję.
Narzędzia
Narzędzie MCP | Endpoint open-tavily |
|
|
|
|
Related MCP server: Tavily Web Search MCP Server
Uruchomienie (self-healing, jak fetch/searxng)
Pakiet jest instalowany na żądanie z GitHub przez uvx — żaden lokalny
plik nie musi przetrwać:
TAVILY_BASE_URL=http://192.168.1.134:3000 \
uvx --from git+https://github.com/marcinkuk/trailsearch-mcp.git trailsearch-mcpKonfiguracja w agent-canvas (mcp_config)
"trailsearch": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/marcinkuk/trailsearch-mcp.git",
"trailsearch-mcp"
],
"env": { "TAVILY_BASE_URL": "http://192.168.1.134:3000" },
"enabled": true
}Po zmianie/nowym starcie konwersacji agent dostaje trailsearch_search /
trailsearch_extract.
Wymagania: uvx (uv) w obrazie agenta oraz internet (git clone na żądanie).
Available Tools
2 toolstrailsearch_extractB
Fetch clean content from known URLs via the TrailSearch /extract endpoint.
Args: urls: list of URLs to extract content from. query: optional context query used while extracting. include_raw_content: also return raw (unfiltered) content per URL.
Returns: JSON string with the extracted content for each URL.
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | ||
| query | No | ||
| include_raw_content | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It does add useful context: extracted content is 'clean,' include_raw_content returns 'raw (unfiltered)' content, and the return type is a JSON string. However, it does not disclose potential errors, rate limits, authentication needs, or what 'clean' means operationally.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-structured, with the purpose front-loaded and params/returns organized clearly. There is little wasted text, though the endpoint name in the first sentence is minor redundancy given the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers all parameters and states the return shape, and an output schema exists. But it lacks usage routing versus trailsearch_search, does not mention the default behavior of include_raw_content, and gives no constraints or caveats. Given the absence of annotations and low schema richness, these gaps are noticeable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the missing parameter explanations. It does, providing plain-language meaning for all three parameters: URLs to extract, an optional context query, and a raw-content flag. It could go further by noting that include_raw_content defaults to true and by clarifying how the query affects extraction.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Fetch clean content from known URLs via the TrailSearch /extract endpoint.' It clearly identifies what the tool operates on, and the phrase 'known URLs' implicitly distinguishes it from trailsearch_search. However, it does not explicitly name the sibling or contrast the two, so it falls just short of full differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no explicit guidance about when to use this tool versus trailsearch_search, and no mention of alternatives or exclusions. The phrase 'known URLs' weakly implies this tool is for URLs you already have rather than discovering them, but that is left to inference rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
trailsearch_searchA
Search the web through a self-hosted TrailSearch API (SearXNG-backed, Tavily-compatible).
Args: query: search query string. max_results: number of results to return (1-20, default 5). mode: "search" (fast, results only) or "crawl" (also fetches page content). search_depth: "basic" or "advanced". include_answer: request a short synthesized answer. include_domains: only include results from these domains. exclude_domains: skip results from these domains. days: restrict results to the last N days (1/7/30/365). topic: optional topic hint (e.g. "news").
Returns: JSON string with the search results (title, url, content/snippet, score).
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | ||
| mode | No | search | |
| query | Yes | ||
| topic | No | ||
| max_results | No | ||
| search_depth | No | basic | |
| include_answer | No | ||
| exclude_domains | No | ||
| include_domains | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosing behavior. It mentions the return format (JSON string with results) and the input parameters, but it does not disclose potential side effects, rate limits, authentication requirements, or any underlying API constraints. While it is read-only in nature, this is not explicitly stated, and the description lacks depth on operational behaviors, leaving some ambiguity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: one sentence for the purpose, a clean list of arguments with short explanations, and a clear return statement. It avoids unnecessary fluff, front-loads the main action, and is easy to scan. No redundant information is present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the essential aspects: purpose, parameters, and return format. It mentions the output as a JSON string with specific fields (title, url, content/snippet, score), which is sufficient given that an output schema exists (though not shown). However, it does not address edge cases like error handling, pagination, or rate limits, and it does not mention the sibling tool or when to prefer this tool over it. These gaps prevent a perfect score but do not make the description inadequate for basic usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides only types and defaults with no descriptions (0% schema coverage). The description compensates by explaining each parameter in detail, such as 'query: search query string', 'mode: 'search' (fast, results only) or 'crawl' (also fetches page content)', and 'include_answer: request a short synthesized answer'. This adds significant meaning beyond the schema, fully covering all 9 parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search the web through a self-hosted TrailSearch API' and mentions it is SearXNG-backed and Tavily-compatible. This distinguishes it from the sibling tool 'trailsearch_extract', which likely extracts content from a given URL, making the purpose specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on what the tool does and its parameters, but it does not explicitly compare it to the sibling tool 'trailsearch_extract'. It is implied that this tool is for web searching while the sibling is for extraction, but an explicit 'when to use this vs. that' statement is missing. This gives a clear context but lacks explicit exclusions, warranting a 4 rather than a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
v0.1.0- First observed
trailsearch_extract - First observed
trailsearch_search
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one performs web searches, the other extracts content from known URLs. There is no overlap or ambiguity between them.
Both tools follow a consistent 'trailsearch_' prefix followed by a verb in lowercase snake_case, which is used uniformly. This matches a clear and predictable pattern.
With only two tools, the server feels minimal, though it covers the essential search and extraction workflow. The low count is borderline and fits the 'thin' end of the scale.
The pair provides solid coverage of search and content extraction, with search supporting many filters and answer generation. Minor gaps exist (e.g., no dedicated endpoint for querying recent trends or managing custom indices), but core user needs are met.
Maintenance
Related MCP Connectors
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Scrape, crawl and search the web for AI agents via MCP.
Query any docs site via MCP. Submit a URL, ask questions, get cited answers.
Related MCP Servers
- FlicenseBqualityDmaintenanceEnables web search capabilities through the Tavily API. Allows users to search the web for information using natural language queries via the MCP protocol.41-
- FlicenseCqualityDmaintenanceEnables web search capabilities through the Tavily API. Allows users to search the web for information using natural language queries through the MCP protocol.3-
- AlicenseBqualityDmaintenanceThe URL-Context-MCP MCP Server provides a tool to analyze and summarize the content of URLs using Google Gemini's URL Context capability via the Gemini API. Now also supports optional grounding with Google Search alongside URL Context. The server is designed to follow prompt-only orchestration: con222 npm7MIT
- FlicenseAqualityDmaintenanceEnables web search capabilities through the Tavily API and serves as a demonstration platform for building custom MCP tools. Designed for educational purposes to showcase MCP server development and LangGraph integration.6-