
Financial News
- 256 installs
- 186 repo stars
- Updated August 4, 2026
- aws-samples/sample-strands-agent-with-agentcore
financial-news is an AWS Strands AgentCore sample skill that helps developers build agents fetching stock quotes, price history, and financial news to answer investor questions via tool calls.
About
financial-news is an agent skill from aws-samples/sample-strands-agent-with-agentcore for market-data agents built with Strands Agents and Amazon Bedrock AgentCore. It exposes three tools: stock_quote for live ticker metrics, stock_history for chartable price series with default 1mo periods spanning 1mo, 3mo, 6mo, 1y, and 5y, and financial_news for latest articles by symbol. The sample repo demonstrates multi-agent orchestration, AgentCore Runtime execution, Gateway MCP tool integration, and finance analysis workflows alongside browser and search agents. Use financial-news when prototyping finance copilots that must ground answers in live quotes and headlines instead of hallucinating market data.
- Financial news tool integration
- Strands AgentCore sample
- Market headline retrieval
- Summarization workflows
- External API wiring for agents
Financial News by the numbers
- 256 all-time installs (skills.sh)
- Ranked #2,529 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/aws-samples/sample-strands-agent-with-agentcore --skill financial-newsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 256 |
|---|---|
| repo stars | ★ 186 |
| Last updated | August 4, 2026 |
| Repository | aws-samples/sample-strands-agent-with-agentcore ↗ |
How do you add stock quote tools to AgentCore agents?
Build a financial-news agent that fetches market headlines, summarizes sentiment, and answers investor questions by connecting external news APIs through AgentCore tooling.
Who is it for?
Developers building AWS Strands finance agents who need structured stock quote, history, and news tool contracts on AgentCore.
Skip if: Production trading systems requiring exchange compliance, sub-millisecond feeds, or non-AWS agent frameworks without tool migration.
When should I use this skill?
The user builds a finance agent, asks for stock quotes or news tools, or extends the Strands AgentCore sample with market data capabilities.
What you get
Agent tool handlers for quotes and history, news article payloads, and Strands AgentCore finance agent configuration.
- Finance tool definitions
- Agent tool-call handlers
- News and quote response payloads
By the numbers
- Exposes 3 finance agent tools: stock_quote, stock_history, and financial_news
- Supports 5 stock_history periods: 1mo, 3mo, 6mo, 1y, and 5y
Files
Financial Market
Available Tools
- stock_quote(symbol): Get current stock quote with key metrics.
symbol(string, required): Stock ticker symbol (e.g., "AAPL", "GOOGL", "MSFT")
- stock_history(symbol, period?): Get historical stock price data for charting and trend analysis.
symbol(string, required): Stock ticker symbolperiod(string, optional, default: "1mo"): Time period (e.g., "1mo", "3mo", "6mo", "1y", "5y")
- financial_news(symbol, count?): Get latest financial news articles for a stock.
symbol(string, required): Stock ticker symbolcount(integer, optional, default: 5): Number of news items to return
- stock_analysis(symbol): Get comprehensive stock analysis including valuation, financials, and analyst recommendations.
symbol(string, required): Stock ticker symbol
Usage Guidelines
- Use standard ticker symbols (e.g., AAPL, MSFT, GOOGL, AMZN).
- For stock quotes, present data in a clear tabular format with key metrics highlighted.
- When showing historical data, mention the time period and any notable trends.
- Combine
stock_quote+stock_analysisfor comprehensive investment overviews. - Always include a disclaimer that this is informational only, not investment advice.
- Use
financial_newsto provide context on price movements.
Related skills
How it compares
Use financial-news as a reference tool schema for AWS finance agents rather than generic web-search skills that return unstructured HTML.
FAQ
Which tools does financial-news provide?
financial-news defines stock_quote for current metrics by ticker, stock_history for price series with optional periods defaulting to 1mo, and financial_news for latest articles filtered by stock symbol such as AAPL or MSFT.
What AWS stack does financial-news belong to?
financial-news is part of the sample-strands-agent-with-agentcore repository demonstrating Strands Agents with Amazon Bedrock AgentCore Runtime, Memory, and Gateway MCP tool integration for finance and research workflows.