Skip to main content
Glama

Server Details

The best web search for your AI Agent

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Unhealthy
OAuth
Works in Glama
Last Tested
Transport
Streamable HTTP
URL
Server Listing
Parallel Search MCP

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updates
    • Changedweb_fetch12 fields changed
      • addedInput schema / properties / objective / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • addedInput schema / properties / objective / default
        Added value: +null
      • changedInput schema / properties / objective / description
        Previous value: -"What information you're looking for from the URLs."New value: +"Natural-language description of what\ninformation you're looking for from the URLs. Limit to 200 characters."
      • removedInput schema / properties / objective / maxLength
        Removed value: -200
      • addedInput schema / properties / objective / title
        Added value: +"Objective"
      • removedInput schema / properties / objective / type
        Removed value: -"string"
      • changedInput schema / properties / urls / description
        Previous value: -"URLs to extract content from."New value: +"List of URLs to extract content from. Must be valid\nHTTP/HTTPS URLs. Maximum 10 URLs per request."
      • removedInput schema / properties / urls / items / format
        Removed value: -"uri"
      • removedInput schema / properties / urls / maxItems
        Removed value: -10
      • addedInput schema / properties / urls / title
        Added value: +"Urls"
      • addedInput schema / title
        Added value: +"extract_toolArguments"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$defs": {
        +    "ExtractError": {
        +      "description": "Extract error details.",
        +      "properties": {
        +        "content": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "description": "Content returned for http client or server errors, if any.",
        +          "title": "Content"
        +        },
        +        "error_type": {
        +          "description": "Error type.",
        +          "title": "Error Type",
        +          "type": "string"
        +        },
        +        "http_status_code": {
        +          "anyOf": [
        +            {
        +              "type": "integer"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "description": "HTTP status code, if available.",
        +          "title": "Http Status Code"
        +        },
        +        "url": {
        +          "title": "Url",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "url",
        +        "error_type",
        +        "http_status_code",
        +        "content"
        +      ],
        +      "title": "ExtractError",
        +      "type": "object"
        +    },
        +    "ExtractResult": {
        +      "description": "Extract result for a single URL.",
        +      "properties": {
        +        "excerpts": {
        +          "anyOf": [
        +            {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Relevant excerpted content from the URL, formatted as markdown.",
        +          "title": "Excerpts"
        +        },
        +        "full_content": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Full content from the URL formatted as markdown, if requested.",
        +          "title": "Full Content"
        +        },
        +        "publish_date": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Publish date of the webpage in YYYY-MM-DD format, if available.",
        +          "title": "Publish Date"
        +        },
        +        "title": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Title of the webpage, if available.",
        +          "title": "Title"
        +        },
        +        "url": {
        +          "description": "URL associated with the search result.",
        +          "title": "Url",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "url"
        +      ],
        +      "title": "ExtractResult",
        +      "type": "object"
        +    },
        +    "UsageItem": {
        +      "description": "Usage item for a single operation.",
        +      "properties": {
        +        "count": {
        +          "description": "Count of the SKU.",
        +          "examples": [
        +            1
        +          ],
        +          "title": "Count",
        +          "type": "integer"
        +        },
        +        "name": {
        +          "description": "Name of the SKU.",
        +          "examples": [
        +            "sku_search_additional_results",
        +            "sku_extract_excerpts"
        +          ],
        +          "title": "Name",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "name",
        +        "count"
        +      ],
        +      "title": "UsageItem",
        +      "type": "object"
        +    },
        +    "Warning": {
        +      "description": "Human-readable message for a task.",
        +      "properties": {
        +        "detail": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": true,
        +              "type": "object"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Optional detail supporting the warning.",
        +          "title": "Detail"
        +        },
        +        "message": {
        +          "description": "Human-readable message.",
        +          "title": "Message",
        +          "type": "string"
        +        },
        +        "type": {
        +          "description": "Type of warning. Note that adding new warning types is considered a backward-compatible change.",
        +          "enum": [
        +            "spec_validation_warning",
        +            "input_validation_warning",
        +            "warning"
        +          ],
        +          "examples": [
        +            "spec_validation_warning",
        +            "input_validation_warning"
        +          ],
        +          "title": "Type",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "type",
        +        "message"
        +      ],
        +      "title": "Warning",
        +      "type": "object"
        +    }
        +  },
        +  "description": "Fetch result.",
        +  "properties": {
        +    "errors": {
        +      "description": "Extract errors: requested URLs not in the results.",
        +      "items": {
        +        "$ref": "#/$defs/ExtractError"
        +      },
        +      "title": "Errors",
        +      "type": "array"
        +    },
        +    "extract_id": {
        +      "description": "Extract request ID, e.g. `extract_cad0a6d2dec046bd95ae900527d880e7`",
        +      "title": "Extract Id",
        +      "type": "string"
        +    },
        +    "results": {
        +      "description": "Successful extract results.",
        +      "items": {
        +        "$ref": "#/$defs/ExtractResult"
        +      },
        +      "title": "Results",
        +      "type": "array"
        +    },
        +    "usage": {
        +      "anyOf": [
        +        {
        +          "items": {
        +            "$ref": "#/$defs/UsageItem"
        +          },
        +          "type": "array"
        +        },
        +        {
        +          "type": "null"
        +        }
        +      ],
        +      "default": null,
        +      "description": "Usage metrics for the extract request.",
        +      "title": "Usage"
        +    },
        +    "warnings": {
        +      "anyOf": [
        +        {
        +          "items": {
        +            "$ref": "#/$defs/Warning"
        +          },
        +          "type": "array"
        +        },
        +        {
        +          "type": "null"
        +        }
        +      ],
        +      "default": null,
        +      "description": "Warnings for the extract request, if any.",
        +      "title": "Warnings"
        +    }
        +  },
        +  "required": [
        +    "extract_id",
        +    "results",
        +    "errors"
        +  ],
        +  "title": "ExtractResponse",
        +  "type": "object"
        +}
    • Removedweb_search
    • Addedweb_search_preview
  2. 3 tool updates
    • Changedweb_fetch12 fields changed
      • removedInput schema / properties / objective / anyOf
        Removed value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]
      • removedInput schema / properties / objective / default
        Removed value: -null
      • changedInput schema / properties / objective / description
        Previous value: -"Natural-language description of what\ninformation you're looking for from the URLs. Limit to 200 characters."New value: +"What information you're looking for from the URLs."
      • addedInput schema / properties / objective / maxLength
        Added value: +200
      • removedInput schema / properties / objective / title
        Removed value: -"Objective"
      • addedInput schema / properties / objective / type
        Added value: +"string"
      • changedInput schema / properties / urls / description
        Previous value: -"List of URLs to extract content from. Must be valid\nHTTP/HTTPS URLs. Maximum 10 URLs per request."New value: +"URLs to extract content from."
      • addedInput schema / properties / urls / items / format
        Added value: +"uri"
      • addedInput schema / properties / urls / maxItems
        Added value: +10
      • removedInput schema / properties / urls / title
        Removed value: -"Urls"
      • removedInput schema / title
        Removed value: -"extract_toolArguments"
      • changedOutput schema / (root)
        Previous value: -{
        -  "$defs": {
        -    "ExtractError": {
        -      "description": "Extract error details.",
        -      "properties": {
        -        "content": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "null"
        -            }
        -          ],
        -          "description": "Content returned for http client or server errors, if any.",
        -          "title": "Content"
        -        },
        -        "error_type": {
        -          "description": "Error type.",
        -          "title": "Error Type",
        -          "type": "string"
        -        },
        -        "http_status_code": {
        -          "anyOf": [
        -            {
        -              "type": "integer"
        -            },
        -            {
        -              "type": "null"
        -            }
        -          ],
        -          "description": "HTTP status code, if available.",
        -          "title": "Http Status Code"
        -        },
        -        "url": {
        -          "title": "Url",
        -          "type": "string"
        -        }
        -      },
        -      "required": [
        -        "url",
        -        "error_type",
        -        "http_status_code",
        -        "content"
        -      ],
        -      "title": "ExtractError",
        -      "type": "object"
        -    },
        -    "ExtractResult": {
        -      "description": "Extract result for a single URL.",
        -      "properties": {
        -        "excerpts": {
        -          "anyOf": [
        -            {
        -              "items": {
        -                "type": "string"
        -              },
        -              "type": "array"
        -            },
        -            {
        -              "type": "null"
        -            }
        -          ],
        -          "default": null,
        -          "description": "Relevant excerpted content from the URL, formatted as markdown.",
        -          "title": "Excerpts"
        -        },
        -        "full_content": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "null"
        -            }
        -          ],
        -          "default": null,
        -          "description": "Full content from the URL formatted as markdown, if requested.",
        -          "title": "Full Content"
        -        },
        -        "publish_date": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "null"
        -            }
        -          ],
        -          "default": null,
        -          "description": "Publish date of the webpage in YYYY-MM-DD format, if available.",
        -          "title": "Publish Date"
        -        },
        -        "title": {
        -          "anyOf": [
        -            {
        -              "type": "string"
        -            },
        -            {
        -              "type": "null"
        -            }
        -          ],
        -          "default": null,
        -          "description": "Title of the webpage, if available.",
        -          "title": "Title"
        -        },
        -        "url": {
        -          "description": "URL associated with the search result.",
        -          "title": "Url",
        -          "type": "string"
        -        }
        -      },
        -      "required": [
        -        "url"
        -      ],
        -      "title": "ExtractResult",
        -      "type": "object"
        -    },
        -    "UsageItem": {
        -      "description": "Usage item for a single operation.",
        -      "properties": {
        -        "count": {
        -          "description": "Count of the SKU.",
        -          "examples": [
        -            1
        -          ],
        -          "title": "Count",
        -          "type": "integer"
        -        },
        -        "name": {
        -          "description": "Name of the SKU.",
        -          "examples": [
        -            "sku_search_additional_results",
        -            "sku_extract_excerpts"
        -          ],
        -          "title": "Name",
        -          "type": "string"
        -        }
        -      },
        -      "required": [
        -        "name",
        -        "count"
        -      ],
        -      "title": "UsageItem",
        -      "type": "object"
        -    },
        -    "Warning": {
        -      "description": "Human-readable message for a task.",
        -      "properties": {
        -        "detail": {
        -          "anyOf": [
        -            {
        -              "additionalProperties": true,
        -              "type": "object"
        -            },
        -            {
        -              "type": "null"
        -            }
        -          ],
        -          "default": null,
        -          "description": "Optional detail supporting the warning.",
        -          "title": "Detail"
        -        },
        -        "message": {
        -          "description": "Human-readable message.",
        -          "title": "Message",
        -          "type": "string"
        -        },
        -        "type": {
        -          "description": "Type of warning. Note that adding new warning types is considered a backward-compatible change.",
        -          "enum": [
        -            "spec_validation_warning",
        -            "input_validation_warning",
        -            "warning"
        -          ],
        -          "examples": [
        -            "spec_validation_warning",
        -            "input_validation_warning"
        -          ],
        -          "title": "Type",
        -          "type": "string"
        -        }
        -      },
        -      "required": [
        -        "type",
        -        "message"
        -      ],
        -      "title": "Warning",
        -      "type": "object"
        -    }
        -  },
        -  "description": "Fetch result.",
        -  "properties": {
        -    "errors": {
        -      "description": "Extract errors: requested URLs not in the results.",
        -      "items": {
        -        "$ref": "#/$defs/ExtractError"
        -      },
        -      "title": "Errors",
        -      "type": "array"
        -    },
        -    "extract_id": {
        -      "description": "Extract request ID, e.g. `extract_cad0a6d2dec046bd95ae900527d880e7`",
        -      "title": "Extract Id",
        -      "type": "string"
        -    },
        -    "results": {
        -      "description": "Successful extract results.",
        -      "items": {
        -        "$ref": "#/$defs/ExtractResult"
        -      },
        -      "title": "Results",
        -      "type": "array"
        -    },
        -    "usage": {
        -      "anyOf": [
        -        {
        -          "items": {
        -            "$ref": "#/$defs/UsageItem"
        -          },
        -          "type": "array"
        -        },
        -        {
        -          "type": "null"
        -        }
        -      ],
        -      "default": null,
        -      "description": "Usage metrics for the extract request.",
        -      "title": "Usage"
        -    },
        -    "warnings": {
        -      "anyOf": [
        -        {
        -          "items": {
        -            "$ref": "#/$defs/Warning"
        -          },
        -          "type": "array"
        -        },
        -        {
        -          "type": "null"
        -        }
        -      ],
        -      "default": null,
        -      "description": "Warnings for the extract request, if any.",
        -      "title": "Warnings"
        -    }
        -  },
        -  "required": [
        -    "extract_id",
        -    "results",
        -    "errors"
        -  ],
        -  "title": "ExtractResponse",
        -  "type": "object"
        -}New value: +null
    • Addedweb_search
    • Removedweb_search_preview
  3. 2 tool updates
    • Changedweb_fetch1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$defs": {
        +    "ExtractError": {
        +      "description": "Extract error details.",
        +      "properties": {
        +        "content": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "description": "Content returned for http client or server errors, if any.",
        +          "title": "Content"
        +        },
        +        "error_type": {
        +          "description": "Error type.",
        +          "title": "Error Type",
        +          "type": "string"
        +        },
        +        "http_status_code": {
        +          "anyOf": [
        +            {
        +              "type": "integer"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "description": "HTTP status code, if available.",
        +          "title": "Http Status Code"
        +        },
        +        "url": {
        +          "title": "Url",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "url",
        +        "error_type",
        +        "http_status_code",
        +        "content"
        +      ],
        +      "title": "ExtractError",
        +      "type": "object"
        +    },
        +    "ExtractResult": {
        +      "description": "Extract result for a single URL.",
        +      "properties": {
        +        "excerpts": {
        +          "anyOf": [
        +            {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Relevant excerpted content from the URL, formatted as markdown.",
        +          "title": "Excerpts"
        +        },
        +        "full_content": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Full content from the URL formatted as markdown, if requested.",
        +          "title": "Full Content"
        +        },
        +        "publish_date": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Publish date of the webpage in YYYY-MM-DD format, if available.",
        +          "title": "Publish Date"
        +        },
        +        "title": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Title of the webpage, if available.",
        +          "title": "Title"
        +        },
        +        "url": {
        +          "description": "URL associated with the search result.",
        +          "title": "Url",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "url"
        +      ],
        +      "title": "ExtractResult",
        +      "type": "object"
        +    },
        +    "UsageItem": {
        +      "description": "Usage item for a single operation.",
        +      "properties": {
        +        "count": {
        +          "description": "Count of the SKU.",
        +          "examples": [
        +            1
        +          ],
        +          "title": "Count",
        +          "type": "integer"
        +        },
        +        "name": {
        +          "description": "Name of the SKU.",
        +          "examples": [
        +            "sku_search_additional_results",
        +            "sku_extract_excerpts"
        +          ],
        +          "title": "Name",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "name",
        +        "count"
        +      ],
        +      "title": "UsageItem",
        +      "type": "object"
        +    },
        +    "Warning": {
        +      "description": "Human-readable message for a task.",
        +      "properties": {
        +        "detail": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": true,
        +              "type": "object"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Optional detail supporting the warning.",
        +          "title": "Detail"
        +        },
        +        "message": {
        +          "description": "Human-readable message.",
        +          "title": "Message",
        +          "type": "string"
        +        },
        +        "type": {
        +          "description": "Type of warning. Note that adding new warning types is considered a backward-compatible change.",
        +          "enum": [
        +            "spec_validation_warning",
        +            "input_validation_warning",
        +            "warning"
        +          ],
        +          "examples": [
        +            "spec_validation_warning",
        +            "input_validation_warning"
        +          ],
        +          "title": "Type",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "type",
        +        "message"
        +      ],
        +      "title": "Warning",
        +      "type": "object"
        +    }
        +  },
        +  "description": "Fetch result.",
        +  "properties": {
        +    "errors": {
        +      "description": "Extract errors: requested URLs not in the results.",
        +      "items": {
        +        "$ref": "#/$defs/ExtractError"
        +      },
        +      "title": "Errors",
        +      "type": "array"
        +    },
        +    "extract_id": {
        +      "description": "Extract request ID, e.g. `extract_cad0a6d2dec046bd95ae900527d880e7`",
        +      "title": "Extract Id",
        +      "type": "string"
        +    },
        +    "results": {
        +      "description": "Successful extract results.",
        +      "items": {
        +        "$ref": "#/$defs/ExtractResult"
        +      },
        +      "title": "Results",
        +      "type": "array"
        +    },
        +    "usage": {
        +      "anyOf": [
        +        {
        +          "items": {
        +            "$ref": "#/$defs/UsageItem"
        +          },
        +          "type": "array"
        +        },
        +        {
        +          "type": "null"
        +        }
        +      ],
        +      "default": null,
        +      "description": "Usage metrics for the extract request.",
        +      "title": "Usage"
        +    },
        +    "warnings": {
        +      "anyOf": [
        +        {
        +          "items": {
        +            "$ref": "#/$defs/Warning"
        +          },
        +          "type": "array"
        +        },
        +        {
        +          "type": "null"
        +        }
        +      ],
        +      "default": null,
        +      "description": "Warnings for the extract request, if any.",
        +      "title": "Warnings"
        +    }
        +  },
        +  "required": [
        +    "extract_id",
        +    "results",
        +    "errors"
        +  ],
        +  "title": "ExtractResponse",
        +  "type": "object"
        +}
    • Changedweb_search_preview2 fields changed
      • changedInput schema / title
        Previous value: -"web_search_previewArguments"New value: +"search_toolArguments"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$defs": {
        +    "UsageItem": {
        +      "description": "Usage item for a single operation.",
        +      "properties": {
        +        "count": {
        +          "description": "Count of the SKU.",
        +          "examples": [
        +            1
        +          ],
        +          "title": "Count",
        +          "type": "integer"
        +        },
        +        "name": {
        +          "description": "Name of the SKU.",
        +          "examples": [
        +            "sku_search_additional_results",
        +            "sku_extract_excerpts"
        +          ],
        +          "title": "Name",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "name",
        +        "count"
        +      ],
        +      "title": "UsageItem",
        +      "type": "object"
        +    },
        +    "Warning": {
        +      "description": "Human-readable message for a task.",
        +      "properties": {
        +        "detail": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": true,
        +              "type": "object"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Optional detail supporting the warning.",
        +          "title": "Detail"
        +        },
        +        "message": {
        +          "description": "Human-readable message.",
        +          "title": "Message",
        +          "type": "string"
        +        },
        +        "type": {
        +          "description": "Type of warning. Note that adding new warning types is considered a backward-compatible change.",
        +          "enum": [
        +            "spec_validation_warning",
        +            "input_validation_warning",
        +            "warning"
        +          ],
        +          "examples": [
        +            "spec_validation_warning",
        +            "input_validation_warning"
        +          ],
        +          "title": "Type",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "type",
        +        "message"
        +      ],
        +      "title": "Warning",
        +      "type": "object"
        +    },
        +    "WebSearchResult": {
        +      "description": "A single search result from the web search API.",
        +      "properties": {
        +        "excerpts": {
        +          "anyOf": [
        +            {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Relevant excerpted content from the URL, formatted as markdown.",
        +          "title": "Excerpts"
        +        },
        +        "publish_date": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Publish date of the webpage in YYYY-MM-DD format, if available.",
        +          "title": "Publish Date"
        +        },
        +        "title": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ],
        +          "default": null,
        +          "description": "Title of the webpage, if available.",
        +          "title": "Title"
        +        },
        +        "url": {
        +          "description": "URL associated with the search result.",
        +          "title": "Url",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "url"
        +      ],
        +      "title": "WebSearchResult",
        +      "type": "object"
        +    }
        +  },
        +  "description": "Output for the Search API.",
        +  "properties": {
        +    "results": {
        +      "description": "A list of WebSearchResult objects, ordered by decreasing relevance.",
        +      "items": {
        +        "$ref": "#/$defs/WebSearchResult"
        +      },
        +      "title": "Results",
        +      "type": "array"
        +    },
        +    "search_id": {
        +      "description": "Search ID. Example: `search_cad0a6d2dec046bd95ae900527d880e7`",
        +      "title": "Search Id",
        +      "type": "string"
        +    },
        +    "usage": {
        +      "anyOf": [
        +        {
        +          "items": {
        +            "$ref": "#/$defs/UsageItem"
        +          },
        +          "type": "array"
        +        },
        +        {
        +          "type": "null"
        +        }
        +      ],
        +      "default": null,
        +      "description": "Usage metrics for the search request.",
        +      "title": "Usage"
        +    },
        +    "warnings": {
        +      "anyOf": [
        +        {
        +          "items": {
        +            "$ref": "#/$defs/Warning"
        +          },
        +          "type": "array"
        +        },
        +        {
        +          "type": "null"
        +        }
        +      ],
        +      "default": null,
        +      "description": "Warnings for the search request, if any.",
        +      "title": "Warnings"
        +    }
        +  },
        +  "required": [
        +    "search_id",
        +    "results"
        +  ],
        +  "title": "SearchResponse",
        +  "type": "object"
        +}
  4. 1 tool update
    • Changedweb_search_preview1 field changed
      • changedInput schema / properties / search_queries / description
        Previous value: -"(optional) List of keyword search queries of 1-6\n words, which may include search operators. The search queries should be related to the\n objective. Limited to 5 entries of 200 characters each."New value: +"List of keyword search queries of 3-6\n words, which may include search operators. The search queries should be related to the\n objective. Limited to 3 entries of 100 characters each."
  5. 2 tool updates
    • First observedweb_fetch
    • First observedweb_search_preview

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation5/5

web_fetch and web_search_preview serve clearly distinct purposes: one fetches content from specific URLs, the other performs web searches. No overlap or ambiguity.

Naming Consistency5/5

Both tools follow a consistent 'web_' prefix and verb_noun pattern (fetch, search_preview). No mixing of conventions.

Tool Count4/5

Two tools is the minimum viable set for search/fetch functionality, which feels slightly thin but well-scoped for the stated purpose of parallel search and content extraction.

Completeness4/5

The set covers the core workflow of searching and fetching content. Minor gaps exist (e.g., no URL listing or multi-source aggregation), but the essentials are present.

Resources