Financial Research Skill

An Agent Skill for filings, fundamentals, market data, and ticker comparisons.
View as MarkdownOpen in Claude

A portable Agent Skill for company financials and market data. It routes finance-specific questions to the standard You.com MCP server’s you-finance tool, supplements narrative context with you-research when needed, and reports figures with periods and sources so stale data is visible.


What You’ll Build

A SKILL.md package for finance-specific research. The skill sends filings, fundamentals, market data, and ticker comparison requests to you-finance, supplements narrative context with you-research, and reports every figure with its period and source so stale numbers are visible.

When It Fires

The question is about filings, fundamentals, or market data for a named company or ticker.


Prerequisites

If you-finance isn’t visible in your harness, enable it with the MCP server’s ?tools= parameter or the YDC_ALLOWED_TOOLS environment variable.

Install the Skill

  1. Connect your agent harness to the You.com MCP server — see the MCP server guide.
  2. Save the skill below as SKILL.md in your harness’s skills directory (or download it).
  3. The agent invokes you-finance (and you-research for context) whenever the trigger fires.
Download SKILL.md

Grab the ready-to-use skill file.

The Skill

SKILL.md
1---
2name: financial-research
3description: Use when the user asks about company financials, filings, or market data - "pull X's fundamentals", "what did Y report", "compare these tickers". For finance topics specifically.
4---
5
6# Financial research (You.com)
7
8## When this fires
9The question is about filings, fundamentals, or market data for a named
10company or ticker.
11
12## How to retrieve
131. Call the standard You.com MCP server's `you-finance` tool. If it is not
14 visible, tell the user to enable it with the MCP server `?tools=` parameter
15 or `YDC_ALLOWED_TOOLS`.
162. For narrative context around the numbers, supplement with `you-research`.
173. Return figures with their reporting period and source. Flag anything stale.

Example Output

1# Financial research: ACME
2
3## Latest reported period
4Fiscal Q2 2026.
5
6## Key figures
7- Revenue: $1.42B, up 18% year over year.
8- Gross margin: 64.1%, down 90 bps year over year.
9
10Staleness check: figures are from the latest reported quarter available in the
11retrieval results.
12
13Sources:
14[1] Company filing
15[2] Earnings release

Next Steps