earnings_reviewer
ActiveTool of @gapup/mcp-knowledge
Earnings Reviewer — Gapup agent-payable C-suite expertise (FUNDRAISING). Returns a structured, audited deliverable. Reference case: Salesforce Q3 FY2026 — call transcript + 10-Q + guidance → analyst note. Inputs are validated server-side — send the documented case fields.
Parameters schema
{
"type": "object",
"required": [
"company",
"quarter",
"transcriptExcerpt"
],
"properties": {
"async": {
"type": "boolean",
"description": "If true, returns a job_id immediately (<200ms) instead of waiting for the result. Poll the result with job_result(job_id). Use for slow tools to avoid client timeouts."
},
"company": {
"type": "object",
"required": [
"name",
"ticker",
"sector",
"exchange"
],
"properties": {
"name": {
"type": "string",
"maxLength": 120,
"minLength": 2
},
"sector": {
"type": "string",
"maxLength": 120,
"minLength": 2
},
"ticker": {
"type": "string",
"maxLength": 10,
"minLength": 1
},
"exchange": {
"enum": [
"NYSE",
"NASDAQ",
"LSE",
"Euronext",
"TSX",
"other"
],
"type": "string",
"default": "NASDAQ"
}
}
},
"quarter": {
"type": "object",
"required": [
"label"
],
"properties": {
"label": {
"type": "string",
"maxLength": 30,
"minLength": 2
},
"reportDate": {
"type": "string",
"maxLength": 30
}
}
},
"analystFocus": {
"type": "string",
"maxLength": 1000
},
"secFilingContext": {
"type": "string",
"maxLength": 20000
},
"transcriptExcerpt": {
"type": "string",
"maxLength": 50000,
"minLength": 200
}
},
"additionalProperties": true
}Parent server
@gapup/mcp-knowledge
https://github.com/getgapup/gapup-mcp
2/7 registries