Company Earnings SkillCompany Earnings Skill

OnlineCredit Usage:1 per callTool:CompanyEarningsSkill

The tool

Give your agent SEC financials. Call it as an MCP tool to pull revenue, EPS, balance sheet and cash flow for any US public company by ticker.

Once your client is connected to the VerveKit MCP server, this appears in its tool list as CompanyEarningsSkill. It is read-only and open-world: it fetches, it never mutates anything on your side, so most clients will call it without asking you to confirm.

Tool call
{
  "name": "CompanyEarningsSkill",
  "arguments": {
    "ticker": "ADBE"
  }
}

What that looks like in a conversation

You don't name the tool — the model picks it. Asking about ADBE in the terms this source covers is enough for it to reach for CompanyEarningsSkill on its own.

Connecting

One server URL covers every skill in the catalog, including this one. Authorization is OAuth — the client opens a browser once and there is no key to paste into a config file.

Client config
{
  "mcpServers": {
    "vervekit": {
      "url": "https://api.vervekit.com/v1/mcp"
    }
  }
}
Endpoint
https://api.vervekit.com/v1/mcp

Per-client setup — Claude Desktop, Cursor, VS Code, ChatGPT — is on the MCP setup page.

Arguments

These are the properties on the tool's inputSchema, so a well-behaved client validates them before the call is made.

ArgumentTypeExampleDescription
tickerRequiredstringADBEStock ticker symbol (e.g. AAPL, MSFT, ADBE)
yearPremiumintegerFiscal year to retrieve. Defaults to latest available.
quarterPremiumintegerFiscal quarter to retrieve. Defaults to latest available.

What the model gets back

The result carries a structuredContent object matching the tool's declared outputSchema, so a client can read fields without parsing prose. status is "ok" on success and error is null; a null field means the value wasn't available for that input, not that the call failed.

Result
{
  "status": "ok",
  "error": null,
  "data": {
    "ticker": "ADBE",
    "company": "ADOBE INC.",
    "cik": "0000796343",
    "fiscalYear": 2025,
    "fiscalQuarter": 2,
    "filingType": "10-Q",
    "filingDate": "2025-06-25",
    "periodEnd": "2025-05-30",
    "income": {
      "revenue": 11587000000,
      "costOfRevenue": 1260000000,
      "grossProfit": 10327000000,
      "operatingIncome": 4272000000,
      "netIncome": 3502000000,
      "eps": 8.08,
      "epsBasic": 8.1,
      "sharesOutstanding": 433000000,
      "sharesOutstandingBasic": 432000000,
      "researchAndDevelopment": 2108000000,
      "sellingAndMarketing": 3121000000,
      "sellingGeneralAndAdmin": null,
      "generalAndAdmin": 744000000,
      "interestExpense": 68000000,
      "incomeTax": 781000000,
      "depreciation": 82000000,
      "stockBasedCompensation": null
    },
    "balance": {
      "totalAssets": 28107000000,
      "currentAssets": 8978000000,
      "cash": 4931000000,
      "receivables": 1735000000,
      "inventory": null,
      "propertyAndEquipment": 1890000000,
      "goodwill": 12830000000,
      "intangibles": 631000000,
      "totalLiabilities": 16659000000,
      "currentLiabilities": 9039000000,
      "accountsPayable": 360000000,
      "longTermDebt": 6166000000,
      "equity": 11448000000,
      "retainedEarnings": 41744000000
    },
    "cashFlow": {
      "operatingCashFlow": 4673000000,
      "capitalExpenditures": 73000000,
      "freeCashFlow": 4600000000,
      "investingCashFlow": -762000000,
      "financingCashFlow": -6629000000,
      "dividendsPaid": null,
      "shareRepurchases": 6750000000
    },
    "metrics": {
      "grossMargin": 89.12,
      "operatingMargin": 36.87,
      "netMargin": 30.22,

Fields

Fields marked Premium need a paid plan. On a plan without them the key is absent rather than wrong, so a model never reasons over a substituted value.
FieldTypeExampleDescription
tickerstringADBEStock ticker symbol for the company
companystringADOBE INC.Official registered name of the company
cikstring0000796343SEC Central Index Key unique identifier
fiscalYearnumber2025Fiscal year of the reporting period
fiscalQuarternumber2Fiscal quarter number (1-4)
filingTypePremiumstring10-QSEC filing type (10-Q, 10-K, etc.)
filingDatestring2025-06-25Date when SEC filing was submitted
periodEndstring2025-05-30End date of the reporting period
incomeobject{…}Income statement figures for the period
income.revenuePremiumnumber11587000000Total revenue in dollars (derived total)
income.costOfRevenuenumber1260000000Direct costs of producing goods sold
income.grossProfitnumber10327000000Gross profit calculated from revenue
income.operatingIncomenumber4272000000Income from normal business operations
income.netIncomePremiumnumber3502000000Bottom-line profit after all expenses
income.epsPremiumnumber8.08Earnings per share (diluted)
income.epsBasicnumber8.1Basic earnings per share calculation
income.sharesOutstandingPremiumnumber433000000Diluted shares outstanding (in millions)
income.sharesOutstandingBasicnumber432000000Basic shares outstanding (in millions)
income.researchAndDevelopmentnumber2108000000Research and development expenses
income.sellingAndMarketingnumber3121000000Sales and marketing operational expenses
income.sellingGeneralAndAdminobjectnullSelling, general administrative expenses
income.generalAndAdminnumber744000000General and administrative expenses
income.interestExpensenumber68000000Interest expense on debt obligations
income.incomeTaxnumber781000000Income tax expense for the period
income.depreciationnumber82000000Depreciation of fixed assets
income.stockBasedCompensationobjectnullStock-based employee compensation expense
balanceobject{…}Balance sheet figures for the period
balance.totalAssetsPremiumnumber28107000000All assets owned by the company
balance.currentAssetsnumber8978000000Assets convertible to cash within year
balance.cashnumber4931000000Cash and cash equivalents balance
balance.receivablesnumber1735000000Amounts customers owe the company
balance.inventoryobjectnullUnsold goods available for sale
balance.propertyAndEquipmentnumber1890000000Fixed assets and equipment value
balance.goodwillPremiumnumber12830000000Intangible value from acquisitions
balance.intangiblesnumber631000000Intangible assets like patents
balance.totalLiabilitiesPremiumnumber16659000000All obligations owed by company
balance.currentLiabilitiesnumber9039000000Liabilities due within twelve months
balance.accountsPayablenumber360000000Amounts company owes to suppliers
balance.longTermDebtPremiumnumber6166000000Debt obligations due after one year
balance.equitynumber11448000000Shareholders equity total value
balance.retainedEarningsnumber41744000000Cumulative profits retained in business
cashFlowobject{…}Cash flow statement figures for the period
cashFlow.operatingCashFlowPremiumnumber4673000000Cash generated from operations
cashFlow.capitalExpendituresnumber73000000Spending on long-term assets purchase
cashFlow.freeCashFlowPremiumnumber4600000000Cash available after capital expenses
cashFlow.investingCashFlownumber-762000000Cash flow from investment activities
cashFlow.financingCashFlownumber-6629000000Cash flow from financing activities
cashFlow.dividendsPaidobjectnullDividends paid to shareholders
cashFlow.shareRepurchasesnumber6750000000Cash spent buying back company shares
metricsobject{…}Margins and ratios derived from the statements
metrics.grossMarginPremiumnumber89.12Gross profit margin percentage
metrics.operatingMarginPremiumnumber36.87Operating income margin percentage
metrics.netMarginPremiumnumber30.22Net income margin percentage
metrics.revenueFormattedPremiumstring$11.59BRevenue formatted with suffix (M/B)
lastUpdatedstring2026-02-05T08:00:00.000ZISO timestamp of data last update

Failure modes

Errors come back as tool errors with a sentence the model can act on, not a bare status code.

StatusWhat it means
400 / 422The arguments didn't validate. The message names the offending one.
401The OAuth session is invalid or expired — reconnect the server.
403Out of credits. Not a bad key — the month's allowance is spent.
404This skill isn't part of VerveKit. Check the catalog.
429Brief rate limit. Retrying after a moment succeeds.

Other ways to use Company Earnings Skill

Set up Company Earnings Skill on VerveKit, or reach the same source a different way. Your VerveKit account and credits work on all of them — one key, one balance.

Call it as a REST APIOne HTTPS endpoint and an X-API-Key header, with SDKs for Node, Python and .NET.APIVerveReference →
Use it in Google Sheets or ExcelA =VERVE() formula fills a column — no script, no export, recalculates in place.VerveSheetsReference →
Ground an agent on itA cited, machine-checkable fact your model can't produce on its own.VerveContextReference →

Frequently asked questions

Do I have to tell the agent to use CompanyEarningsSkill?

No. The tool's name and description are in the model's context once the server is connected, so it selects the tool when the question calls for it. Naming it explicitly works too and is useful when you want to force the call.

Does connecting the server expose every tool at once?

Yes — one connection lists the whole VerveKit catalog. Clients with a tool budget can usually filter the list; the credit cost is per call, so an unused tool costs nothing.

What does a call cost?

1 credit each time the tool actually runs. A model that reasons about the tool without calling it costs nothing.

Is there a REST version of this?

Yes — the same source is available as a plain HTTPS endpoint on APIVerve, linked above. Same data, same credits, same account.

What's Next?

Continue your journey with these recommended resources

Was this page helpful?