BrandKarma
get_research_dossier
Reads a research dossier: its status, its claims with the source URLs and dates behind them, where the sources disagree, what the research could not settle, and the primary research it suggests the user do themselves. Cite claims by their id when writing briefs or ideas — a claim id resolves to a URL and a date, which is what makes 'based on several recent sources' checkable rather than a claim about the article. Pass planId + workstreamId instead of dossierId to look up a workstream's dossier.
Remote Account required revuo:brandkarma-4084
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called get_research_dossier?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"dossierId": {
"description": "Dossier ID (ObjectId)",
"type": [
"string",
"null"
],
"default": null
},
"planId": {
"description": "Content plan ID (ObjectId). Pass with workstreamId to look the dossier up.",
"type": [
"string",
"null"
],
"default": null
},
"workstreamId": {
"description": "Workstream ID (GUID). Pass with planId.",
"type": [
"string",
"null"
],
"default": null
},
"includeSources": {
"description": "Include the full source list with excerpts and per-source read errors. Off by default.",
"type": "boolean",
"default": false
},
"includeSweepQueries": {
"description": "Include the questions each engine was actually asked. Useful when a dossier came back thin.",
"type": "boolean",
"default": false
}
}
}