Jina.ai Grounding MCP Server

by spences10
Verified

ground_statement

Ground a statement using real-time web search results to check factuality. When providing URLs via the references parameter, ensure they are publicly accessible and contain relevant information about the statement. If the URLs do not contain the necessary information, try removing the URL restrictions to search the entire web.

Input Schema

NameRequiredDescriptionDefault
no_cacheNoWhether to bypass cache for fresh results
referencesNoOptional list of URLs to restrict search to. Only provide URLs that are publicly accessible and contain information relevant to the statement. If the URLs do not contain the necessary information, the grounding will fail. For best results, either provide URLs you are certain contain the information, or omit this parameter to search the entire web.
statementYesStatement to be grounded

Input Schema (JSON Schema)

{ "properties": { "no_cache": { "default": false, "description": "Whether to bypass cache for fresh results", "type": "boolean" }, "references": { "description": "Optional list of URLs to restrict search to. Only provide URLs that are publicly accessible and contain information relevant to the statement. If the URLs do not contain the necessary information, the grounding will fail. For best results, either provide URLs you are certain contain the information, or omit this parameter to search the entire web.", "items": { "type": "string" }, "type": "array" }, "statement": { "description": "Statement to be grounded", "type": "string" } }, "required": [ "statement" ], "type": "object" }

You must be authenticated.

Other Tools