Home / MCP / Search Stock News MCP Server

Search Stock News MCP Server

Provides real-time stock news search via Tavily API with templates, parameters, and domain filtering.

typescript
Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
    "mcpServers": {
        "search_stock_news_mcp": {
            "command": "npx",
            "args": [
                "-y",
                "search-stock-news-mcp@latest"
            ],
            "env": {
                "TAVILY_API_KEY": "your-api-key-here"
            }
        }
    }
}

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 real-time stock news searches against Tavily API with support for basic symbol/company queries and result limiting.

templateQueries

Supports multiple customizable search templates to fit different stock-related news needs.

domainFilter

Applies domain-specific filtering to restrict results to trusted sources.

typeSafeInterface

Offers a type-safe, TypeScript-friendly interface for configuring search parameters and results.