Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Transcript Spike

БесплатноНе проверен

Enables LLMs to inspect and search mock transcripts through MCP tools and resources. Supports listing, fetching, and searching transcripts with filters on parti

GitHubEmbed

Описание

Enables LLMs to inspect and search mock transcripts through MCP tools and resources. Supports listing, fetching, and searching transcripts with filters on participants, tags, and content.

README

A small Model Context Protocol server that lets an LLM inspect and search mock transcripts stored in data/transcripts.json.

Requirements

  • Node.js 18 or newer
  • npm

Transports

This server supports two transports:

  1. stdio — the MCP client spawns the process (default)
  2. Streamable HTTP — you run the server and point the client at http://127.0.0.1:3000/mcp

HTTP (localhost)

Start the server:

npm run mcp:http

Or with auto-reload while editing TypeScript:

npm run dev:http

Then configure the client with a URL:

{
  "mcpServers": {
    "transcripts": {
      "url": "http://127.0.0.1:3000/mcp"
    }
  }
}

Optional env vars:

  • PORT — listen port (default 3000)
  • MCP_TRANSPORT=http — same as passing --http

Inspector:

npx @modelcontextprotocol/inspector http://127.0.0.1:3000/mcp

stdio (spawned by the client)

No separate server process. Point the client at the TypeScript source:

{
  "mcpServers": {
    "transcripts": {
      "command": "npx",
      "args": [
        "tsx",
        "/absolute/path/to/mcp-spike/src/server.ts"
      ]
    }
  }
}

Or use the compiled build after npm run build:

{
  "mcpServers": {
    "transcripts": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-spike/dist/server.js"]
    }
  }
}

MCP capabilities

Resource:

  • transcripts://all returns the complete JSON dataset.

Tools:

  • list_transcripts lists metadata and supports participant and tag filters.
  • get_transcript returns a full transcript by ID.
  • search_transcripts searches titles, participants, tags, speakers, and spoken text.

Edits to data/transcripts.json are picked up on the next tool/resource call. Invalid data is rejected using a Zod schema.

from github.com/pratnayake-alphasights/mcp-spike

Установка Transcript Spike

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/pratnayake-alphasights/mcp-spike

FAQ

Transcript Spike MCP бесплатный?

Да, Transcript Spike MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Transcript Spike?

Нет, Transcript Spike работает без API-ключей и переменных окружения.

Transcript Spike — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Transcript Spike в Claude Desktop, Claude Code или Cursor?

Открой Transcript Spike на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Transcript Spike with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development