glim_web_search
ActiveTool of glim.sh
declared in 1.0.0
Semantic web search powered by Exa. Returns titles, URLs, and the top query-relevant excerpt per result. Compact text by default; pass format='json' for full structured data incl. all excerpts per result. Use glim_web_fetch(url) for full page content.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search query"
},
"format": {
"enum": [
"text",
"json"
],
"type": "string",
"default": "text",
"description": "Output format. 'text' (default): compact human-readable list, fewer tokens. 'json': full structured data incl. the highlights array per result."
},
"exclude_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "Exclude results from these domains. Useful for filtering noisy aggregators or SEO farms when you've seen them dominate results (e.g. ['pinterest.com', 'quora.com'])."
},
"include_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "Restrict results to these domains (e.g. ['arxiv.org'])"
},
"published_within_days": {
"type": "integer",
"maximum": 3650,
"minimum": 1,
"description": "Restrict to results published within the last N days. Skip this for broad queries - it excludes pages without publish-date metadata. Common values: 1, 7, 30, 365."
}
}
}Parent server
glim.sh
https://github.com/glim-sh/glim-mcp
1/7 registries