Skip to main content
Glama
sayitvid

sayitvid-mcp

Official

SayItVid MCP Server

SayItVid Model Context Protocol License: MIT

Official Model Context Protocol (MCP) Server for SayItVid — Learn how English is really spoken. Search over 450,000 authentic video clips for exact spoken timestamps, IPA phonetics, syllable divisions, and natural language context.


Features

  • Search Real Spoken Videos (): Retrieve millisecond-timestamped video segments from authentic conversations, lectures, and interviews. Filter by American (), British (), or Australian () accents.

  • Deep Phonetics & Dictionary (): Access International Phonetic Alphabet (IPA) transcriptions, syllable breakdowns, stressed syllable markers, heteronym pronunciation rules (e.g. vs ), and pronunciation FAQs.

  • A-Z Directory Browsing (): Structured exploration of the English dictionary by letter or prefix.

  • Curated Practice Playlists (): Study targeted collections for IELTS vocabulary, tricky heteronyms, silent letters, and medical terminology.


Related MCP server: Phonetik

Quick Setup

1. Cursor IDE (Native Remote SSE)

Add to your Cursor MCP settings ():

  • Name:

  • Type:

  • URL:

2. Claude Desktop

Add to your Claude Desktop configuration file:

{
  "mcpServers": {
    "sayitvid": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://sayitvid.com/api/mcp"]
    }
  }
}

3. Antigravity / Opencode

Add to opencode.json:

{
  "mcp": {
    "sayitvid": {
      "type": "remote",
      "url": "https://sayitvid.com/api/mcp"
    }
  }
}

4. Direct JSON-RPC / HTTP

curl -X POST https://sayitvid.com/api/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "search_pronunciation",
      "arguments": {
        "query": "ephemeral",
        "accent": "uk"
      }
    }
  }'

Available MCP Tools

Tool

Description

search_pronunciation

Search video transcripts for timestamped clips, subtitles, and channel context.

get_word_details

Retrieve IPA phonetic transcription, syllables, stress index, and heteronym rules.

browse_vocabulary

Browse dictionary words by letter (A-Z) or prefix.

get_public_playlists

Retrieve curated study playlists (IELTS, heteronyms, silent letters).



License

MIT License. See LICENSE for details.

Related MCP Connectors

Related MCP Servers