seeking-alpha

seeking-alpha

3.5

The Seeking Alpha MCP server provides comprehensive access to a wealth of financial data and insights.

The Seeking Alpha MCP server offers tools to query for news, market movements, price quotes, charts, indices, and analyses from both investors and experts. This server is designed to facilitate financial data retrieval and analysis for developers and financial professionals.

Features

  • {'name': 'News and Market Analysis', 'description': 'Access the latest news and in-depth market analysis to stay informed about market trends and developments.'}
  • {'name': 'Price Quotes and Charts', 'description': 'Retrieve real-time and historical price quotes and chart data for various financial instruments.'}
  • {'name': 'Indices and Metrics', 'description': 'Access data on financial indices and key performance metrics for better market assessment.'}
  • {'name': 'Expert Insights', 'description': 'Gain insights from investors and experts to enhance your financial strategies and decision-making.'}
  • {'name': 'Comprehensive Financial Data', 'description': 'Access a wide range of financial data, including dividends, earnings, and SEC filings.'}

MCP Tools

  • Auto-Complete: Get suggestions for symbols, authors, and more based on entered keywords or phrases.
  • Author Details: Retrieve detailed information about specific authors.
  • Symbol Information: Access metadata, profiles, summaries, financials, and fundamentals for specific symbols.
  • Historical Data: Obtain historical prices, dividend histories, and splits for financial instruments.
  • Momentum and Valuation: Analyze the momentum and valuation of specific symbols.
  • Metrics and Grades: Access profitability, growth metrics, and grades for financial assessment.
  • SEC Filings: Retrieve SEC filings related to specific symbols.
  • Chart Data: Obtain data necessary for chart generation and visualization.
  • Earnings and Estimates: Access earnings information and revenue estimates for specific symbols.
  • Analyst Recommendations: Get analyst price targets and recommendations for financial instruments.
  • Articles and News: List articles and news by category or symbol, including trending topics and press releases.
  • Transcripts and Comments: Access transcripts of specific symbols and list comments related to articles or news.
  • Screeners: Utilize pre-defined screeners to filter and analyze stocks based on various criteria.
  • Account Management: Manage account-related functions such as obtaining access tokens and retrieving account information.

Usage with Different Platforms

python

python
import requests

url = 'https://api.seekingalpha.com/v3/symbols/AAPL/quote'
headers = {'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
response = requests.get(url, headers=headers)
print(response.json())

javascript

javascript
const fetch = require('node-fetch');

const url = 'https://api.seekingalpha.com/v3/symbols/AAPL/quote';
const options = {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
  }
};

fetch(url, options)
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));