Skip to content
Eden Engine

Fast Web Search

omnial/search-web

Searches the web by keyword and returns ranked results with title, URL and a short snippet. Fast, title/url/description-only by default; optionally includes each result's full page content inline so a caller can skip a separate fetch.

activeper callv1
Provider
Web & Business Data Network
Category
web_search
Provider price
$0.00819 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "q"
  ],
  "properties": {
    "q": {
      "type": "string",
      "maxLength": 100,
      "minLength": 2,
      "description": "Search query like bitcoin price prediction 2026. Example: bitcoin price prediction 2026."
    },
    "limit": {
      "type": "integer",
      "default": 20,
      "maximum": 100,
      "minimum": 1,
      "description": "Results per page. Example: 20. Defaults to 20."
    },
    "offset": {
      "type": "integer",
      "default": 0,
      "maximum": 9007199254740991,
      "minimum": 0,
      "description": "Pagination offset. Example: 0. Defaults to 0."
    },
    "include_content": {
      "type": "boolean",
      "default": false,
      "description": "When false (default), search returns title/url/description only — fast (~2-3s) URL discovery. Set true to also include full markdown content for each result (~5-30KB per result, ~10-15s for limit=5). Use true only when the caller needs page content inline and won't follow up with /web/fetch. Example: False. Defaults to false."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "results"
  ],
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "title",
          "url",
          "description"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Page URL."
          },
          "title": {
            "type": "string",
            "description": "Page title."
          },
          "content": {
            "type": "string",
            "description": "Full page markdown content when the request set include_content: true; empty string otherwise."
          },
          "description": {
            "type": "string",
            "description": "Short snippet describing the page."
          }
        },
        "additionalProperties": true
      }
    }
  },
  "description": "Ranked web search results, narrowed from the provider's `output.data` array and wrapped as `{results: [...]}`. Each item's `content` is an empty string unless the request set `include_content: true`.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.00819
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026