Skip to main content

What is MCP?

Model Context Protocol (MCP) lets AI assistants like Claude access external tools directly. AhamFlow exposes all 36 endpoints as MCP tools that Claude can call during conversations.

Setup

Add this to your Claude Desktop MCP config (~/.config/claude/mcp.json):
{
  "mcpServers": {
    "ahamflow": {
      "url": "https://api.ahamflow.dev/mcp",
      "headers": {
        "x-api-key": "YOUR_AHAMFLOW_API_KEY"
      }
    }
  }
}
Restart Claude Desktop.

Example Prompts

Once connected, you can ask Claude things like:
  • “What’s the unusual options flow on AAPL today?”
  • “Show me the top insider buys over $100k this week”
  • “Get Apple’s income statement for the last 3 years”
  • “What are the current treasury yields and is the curve inverted?”
  • “What’s the dark pool activity on SPY?”

Available Tools

The MCP gateway exposes tools across 6 services:
ServiceTools
edgarget_financials, get_facts, get_insider_trades, get_filings, get_company, get_income_statement, get_balance_sheet, get_cash_flow, get_cross_signals, and more
optionsget_flow_alerts, get_options_chain, get_darkpool_recent, get_darkpool_ticker, get_earnings_calendar
equitiesget_stock_quote, get_stock_history, get_market_overview, get_sector_performance
macroget_yield_curve, get_economic_data, get_cot_report, get_cot_extremes, get_cot_changes
cryptoget_crypto_price, get_crypto_market_overview, get_trending_crypto
predictionssearch_markets, get_active_markets, get_market_categories, get_market_details
Use POST /mcp/all/list_tools to get the full list programmatically.
MCP access requires a Pro plan ($49/mo). Upgrade here.