MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

AudioAlpha MCP server description

Created 4/13/2026
Updated about 7 hours ago
Repository documentation and setup instructions

AudioAlpha MCP Server

Real-time intelligence from 100+ daily finance and crypto podcasts — α-sentiment scores, narrative signals, asset mentions, episode summaries, full transcripts, and 40+ custom metrics, built for AI agents and trading workflows.

MCP API Docs Website


Overview

AudioAlpha ingests 100+ crypto and finance podcasts daily, extracting structured intelligence using proprietary metrics:

  • α-sentiment™ — Scored 0–10 per episode, asset, and market, with OHLC and delta tracking
  • α-Index™ — Composite narrative strength score (0–1) combining sentiment level, historical deviation, host consensus, and coverage reach
  • α-Pulse™ — Composite narrative momentum score (0–1) measuring how rapidly the podcast narrative is accelerating

Connect to this MCP server to give your AI agent real-time access to crypto podcast intelligence — without writing any API code.


MCP Endpoint

https://www.audioalpha.io/api/mcp

Transport: Streamable HTTP
Protocol version: 2025-03-26
Authentication: Bearer token (your AudioAlpha API key)


Quickstart

Claude Desktop

  1. Generate your API key at audioalpha.io/account
  2. Open Settings → Developer → Edit Config
  3. Add to claude_desktop_config.json:
{
  "mcpServers": {
    "audioalpha": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://www.audioalpha.io/api/mcp?apiKey=sk_live_your_key"
      ]
    }
  }
}
  1. Replace sk_live_your_key with your actual API key
  2. Save and restart Claude Desktop

Claude.ai (Integrations)

  1. Go to Settings → Integrations → Add Integration
  2. Enter the MCP URL: https://www.audioalpha.io/api/mcp
  3. Add your API key as the Bearer token

Other MCP Clients

{
  "url": "https://www.audioalpha.io/api/mcp",
  "headers": {
    "Authorization": "Bearer sk_live_your_key"
  }
}

Tools Reference

🌐 Market (5 tools)

| Tool | Description | |------|-------------| | get_market_snapshot | Daily market narrative report — regime, α-sentiment OHLC, z-scores, psychology summary, key tensions, surprise mentions, wordcloud | | get_market_themes | Narrative themes dominating the podcast space — title, summary, coverage count, fragility, novelty, persistency, counterfactual narrative | | get_market_signals | Scenario-based strategic signals across all assets — signal type, horizon, trigger conditions, confidence, invalidating conditions | | get_market_episodes | All podcast episodes published on a given date with α-sentiment scores and transcript summaries | | get_market_featured_quotes | Top-ranked quotes from across all podcasts for a given date |

📈 Ticker (4 tools)

| Tool | Description | |------|-------------| | get_ticker_snapshot | Deep daily snapshot for a specific asset — α-Index, α-Pulse, sentiment OHLC, bull/bear/neutral ratios, consensus, novelty, momentum, narrative intensity, spider chart | | get_ticker_signals | Scenario signals for a specific asset with horizon, trigger, confidence, and invalidating conditions | | get_ticker_featured_quotes | Top podcast quotes about a specific asset, ranked by relevance | | get_ticker_leaderboard | Daily leaderboard by category: alpha_index, alpha_pulse, risers, droppers, mentioned, surprising |

🎙️ Podcast (4 tools)

| Tool | Description | |------|-------------| | search_podcasts | Search for podcasts by name — returns podcast ID, name, artist, language, X handle, artwork | | get_podcast_episodes | Recent episodes for a specific podcast (up to 20) | | get_podcast_latest | Latest episode with title, summary, α-sentiment, and traditional markets sentiment | | get_podcast_latest_full | Latest episode with full details including quotes and asset mentions |

🎧 Episode (5 tools)

| Tool | Description | |------|-------------| | get_episode_details | Episode metadata — title, date, duration, α-sentiment, traditional markets sentiment, podcast info | | get_episode_summary | Transcript summary with assets mentioned and their α-sentiment scores | | get_episode_quotes | All extracted quotes with speaker attribution and α-sentiment scores | | get_episode_transcript | Full speaker-diarized transcript with speaker name mapping (Pro/Enterprise only) | | get_episode_full | Complete episode data in one call — details, summary, quotes, asset mentions |

👤 Personal (3 tools)

| Tool | Description | |------|-------------| | get_my_feed | Personalized feed based on your favorited assets and followed podcasts — includes snapshots, signals, and curated quotes | | get_my_favorite_assets | List of crypto assets you've favorited on AudioAlpha | | get_my_favorite_podcasts | List of podcasts you follow on AudioAlpha |


Metrics Glossary

| Metric | Range | Description | |--------|-------|-------------| | α-sentiment | 0–10 | Podcast sentiment score. 5 = neutral, 0 = maximally bearish, 10 = maximally bullish | | α-Index™ | 0–1 | Narrative strength — combines sentiment level, historical deviation, consensus, and coverage reach | | α-Pulse™ | 0–1 | Narrative momentum — how rapidly the narrative is accelerating | | consensus_score | 0–1 | Agreement among podcast hosts. 1 = full agreement | | attention_share | 0–1 | Proportion of total podcast mentions received by this asset | | novelty_score | 0–1 | How new or surprising the narrative is relative to history | | fragility_score | 0–1 | How unstable or reversible the current narrative is | | narrative_intensity | 0–1 | Volume and passion of discussion about an asset | | sentiment_delta_1d/7d | −10 to +10 | Change in α-sentiment vs 1 or 7 days ago | | sentiment_zscore | −3 to +3 | Standard deviations from the historical α-sentiment mean |

See full documentation at https://audioalpha.io/docs


Example Prompts

Once connected, try these in Claude:

What's the overall crypto market sentiment today?
Give me a full snapshot of BTC — sentiment, signals, and what podcasters are saying.
Which assets are the biggest movers in podcast sentiment today?
What narrative themes are dominating crypto podcasts right now?
Search for the Unchained podcast and summarize its latest episode.
Show me my personalized feed based on my favorite assets.
What are the top quoted lines from crypto podcasts today?

Authentication

All requests require a valid AudioAlpha API key passed as a Bearer token:

Authorization: Bearer sk_live_your_key

Alternative methods also supported:

  • X-API-Key: sk_live_your_key header
  • ?apiKey=sk_live_your_key query parameter

Get your API key at audioalpha.io/account.


API Plans

See audioalpha.io/pricing for details.


Links


Disclaimer

Metrics and sentiment scores are derived from podcast content analysis and are provided for informational purposes only. Nothing in this MCP server constitutes financial advice.

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/dorienh/AudioAlpha-mcp
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "dorienh-audioalpha-mcp": { "command": "git", "args": [ "clone", "https://github.com/dorienh/AudioAlpha-mcp" ] } } }