live · Productivity & Work · JSON · API for agents
Search for market research reports on MRFR by keyword or industry.
{
"name": "search_reports",
"kind": "read",
"impl": "imperative",
"description": "Search for market research reports on MRFR by keyword or industry.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The industry or topic to search for"
}
},
"required": [
"query"
]
},
"page": "/"
}Navigate to a specific report detail page using its slug.
{
"name": "view_report",
"kind": "read",
"impl": "imperative",
"description": "Navigate to a specific report detail page using its slug.",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "The URL slug of the report"
}
},
"required": [
"slug"
]
},
"page": "/"
}Browse all market research categories and industries.
{
"name": "list_categories",
"kind": "read",
"impl": "imperative",
"description": "Browse all market research categories and industries.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}Navigate to the sample request form for a specific report.
{
"name": "request_sample",
"kind": "action",
"impl": "imperative",
"description": "Navigate to the sample request form for a specific report.",
"inputSchema": {
"type": "object",
"properties": {
"report_id": {
"type": "integer",
"description": "The internal ID of the report"
}
},
"required": [
"report_id"
]
},
"page": "/"
}