- Home
- MCP servers
- Search Stock News
Search Stock News
- typescript
6
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"cognitive-stack-search-stock-news-mcp": {
"command": "npx",
"args": [
"-y",
"search-stock-news-mcp@latest"
],
"env": {
"TAVILY_API_KEY": "YOUR_API_KEY"
}
}
}
}You can connect your MCP client to the Search Stock News MCP Server to query real-time stock-related news via Tavily, with configurable templates, domain filtering, and a TypeScript-friendly interface. This server is designed to work with any MCP client and lets you tailor searches for specific stocks, domains, and depth, while keeping a safe and predictable data contract.
How to use
You interact with the Search Stock News MCP Server through your MCP client by pointing it at the MCP server, configuring your Tavily API key, and choosing a search template and filters that fit your goal. Use the client to initiate stock news searches for a given symbol or company, request a maximum number of results, and optionally apply domain filters or advanced search depth to refine the results.
Key usage patterns you can apply:
- Start with a basic stock news search for a symbol and company name to retrieve recent articles.
- Use an advanced search with a deeper search depth and a minimum relevance score to filter results.
- Apply domain filters to focus on trusted sources like Reuters or Bloomberg.
How to install
npx -y search-stock-news-mcp@latest
npx -y @smithery/cli install search-stock-news-mcp --client claude
Available tools
realTimeSearch
Performs a real-time stock news search using the Tavily API and returns the latest articles for a given symbol or company.
templateSearch
Supports multiple customizable search templates to tailor how searches are performed and results are ranked.
contentFiltering
Applies domain-specific and general filters to limit results to relevant sources and topics.
domainFiltering
Filters results to include or exclude specific domains or publishers as configured.
typeSafety
Ensures type-safe operations with TypeScript, providing predictable request/response shapes for MCP clients.