mcpbeat Sign in

Delive Transcript Analyzer Skill for Claude

Analyze, summarize, and extract insights from DeLive transcription sessions. Use when: user mentions DeLive, transcription, meeting transcripts, live captions, audio transcription, AI correction, corrected transcript, or transcript analysis; user wants to search, retrieve, summarize, correct, or process recorded transcripts; user asks about meeting notes, action items, discussion summaries, or transcript quality from DeLive. Requires DeLive app running locally with its MCP server or REST API.

1k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
251
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/XimilalaXiang/DeLive --skill delive-transcript-analyzer

The instruction itself

17 sections, as written by the author

DeLive Transcript Analyzer

Analyze and extract insights from real-time transcription sessions captured by DeLive, a desktop app for live speech-to-text.

Prerequisites

  • DeLive must be running locally (REST API at http://localhost:23456)
  • For MCP integration, the DeLive MCP server must be configured (see Setup below)

Setup

The DeLive MCP server provides direct tool access. Add to your MCP config:

{
  "mcpServers": {
    "delive": {
      "command": "node",
      "args": ["<PATH_TO_DELIVE>/mcp/delive-mcp-server.js"]
    }
  }
}

Option B: REST API (for any client)

DeLive exposes a local REST API when running:

  • Base URL: http://localhost:23456/api/v1/
  • WebSocket live stream: ws://localhost:23456/ws/live

Available Tools (via MCP)

| Tool | Purpose |

|------|---------|

| search_transcripts | Find sessions by keyword in title or transcript content |

| get_session | Full session with transcript, corrected transcript, AI summary, mind map, Q&A |

| get_session_transcript | Transcript text + corrected transcript (when available) |

| get_session_summary | AI summary, action items, keywords, mind map |

| get_recording_status | Check if DeLive is currently recording |

| list_topics | List topic categories for organizing sessions |

| list_tags | List all tags used to label sessions |

Available Resources (via MCP)

| Resource URI | Description |

|-------------|-------------|

| delive://sessions/recent | Most recent 10 sessions (metadata) |

| delive://status | Current app and recording status |

Workflow Patterns

Pattern 1: Meeting Summary to Email Draft

  • Search for the relevant meeting: search_transcripts("weekly standup")
  • Get the full session: get_session("<session_id>")
  • Use the transcript and AI summary to draft a follow-up email

Pattern 2: Lecture Notes to Study Guide

  • Find the lecture: search_transcripts("machine learning lecture")
  • Get the transcript: get_session_transcript("<session_id>")
  • Extract key concepts, create flashcards, or generate a structured study guide

Pattern 3: Code Discussion to Implementation

  • Search for the discussion: search_transcripts("refactor database layer")
  • Get session details: get_session("<session_id>")
  • Extract technical decisions and action items from the summary
  • Generate implementation code based on the discussed approach

Pattern 4: Multi-Session Analysis

  • Search broadly: search_transcripts("project alpha")
  • Retrieve summaries for each matching session
  • Synthesize a cross-session report: timeline, decisions made, open items

Pattern 5: Best-Quality Transcript

  • Get the transcript: get_session_transcript("<session_id>")
  • Check if a corrected transcript is present (returned as a separate section)
  • Prefer the corrected version for downstream processing (summaries, translations, reports)

Pattern 6: Real-Time Monitoring

Connect to the live WebSocket for real-time transcript access:

import asyncio
import websockets
import json

async def monitor():
    async with websockets.connect("ws://localhost:23456/ws/live") as ws:
        async for message in ws:
            data = json.loads(message)
            if data["type"] == "transcript":
                print(data["stableText"])

asyncio.run(monitor())

REST API Reference

All endpoints return JSON. Base URL: http://localhost:23456

| Method | Endpoint | Description |

|--------|----------|-------------|

| GET | /api/v1/health | Server health and version |

| GET | /api/v1/sessions | List sessions (params: search, limit, offset, topicId, status) |

| GET | /api/v1/sessions/:id | Full session detail |

| GET | /api/v1/sessions/:id/transcript | Transcript text + corrected transcript |

| GET | /api/v1/sessions/:id/summary | AI summary and mind map |

| GET | /api/v1/topics | All topics |

| GET | /api/v1/tags | All tags |

| GET | /api/v1/status | Recording state and app info |

Tips

  • Search is case-insensitive and matches both title and transcript content
  • Sessions with status: "completed" have full transcripts; "recording" means in-progress
  • The hasSummary field in session listings indicates whether AI post-processing has been run
  • Use limit and offset for pagination when there are many sessions
  • The live WebSocket at /ws/live broadcasts both transcript updates and session lifecycle events (session-start, session-end)
  • Corrected transcript: get_session_transcript returns a correctedTranscript field when AI correction has been applied. Prefer this over the raw transcript for higher accuracy
  • get_session includes a Corrected Transcript section when available — use it for summaries, reports, and analysis

Error Handling

If DeLive is not running, all API calls will fail with a connection error. Check:

  • DeLive app is open and running
  • The built-in server is active (check http://localhost:23456/api/v1/health)
  • For MCP: the MCP server process can reach DeLive on localhost

Other skills for the same job

different authors, same section of the catalogue
Skill Share
by frostant
×4

A skill that creates new Claude skills and automatically shares them on Slack using Rube for seamless team collaboration and skill discovery.

728 tokens
Init First Agent
by nanocoai

Walk the operator through creating the first NanoClaw agent for a DM channel — resolve the operator's channel identity, wire the DM messaging group to a new agent, and trigger a welcome DM via the normal delivery path. Use after channel credentials are configured and the service is running.

2k tokens
Customer Support Agent
by mastra-ai
vendor

Authoring playbook for building agents that triage and reply to customer messages — support tickets, email inquiries, chat questions, refund requests, or product issues. Use this when the user wants an agent that handles inbound customer questions, drafts replies, escalates hard cases, summarizes tickets, or follows a support playbook.

2k tokens
Build Zoom Team Chat App
by anthropics
vendor

Reference skill for Zoom Team Chat. Use after routing to a chat workflow when building user-scoped messaging integrations, chatbot experiences, rich cards, buttons, slash commands, or chat webhooks.

29k tokens
Language Injection
by microsoft
vendor

LLM Agent 多语言注入规范。在修改 Agent 提示词、添加新的 Agent 端点、处理用户可见的后端消息(message_code)时使用。

1k tokens
Trigger Chat Agent Advanced
by triggerdotdev
vendor

> Advanced and operational chat.agent capabilities for Trigger.dev, loaded on demand. Load this when working on the raw Sessions primitive (sessions / SessionHandle), a custom chat transport or the realtime wire protocol, durable sub-agents (AgentChat, chat.stream.writer), human-in-the-loop, steering, actions, background injection (chat.defer / chat.inject), fast starts (preload, Head Start via @trigger.dev/sdk/chat-server), context resilience (compaction, recovery boot, OOM, large payloads), chat.local run-scoped state, offline testing with mockChatAgent, or prerelease/version upgrades. For the everyday chat.agent({...}) definition and the useTriggerChatTransport happy path, use the trigger-authoring-chat-agent skill instead.

4k tokens
Bootstrap Google Tools
by google
vendor

Install and authenticate, on demand, the CLIs the sandbox does not prebake — Node/npm, `gws` (Google Workspace), `gcloud`, `agents-cli` (call remote A2A/ADK agents), and `mcp-cli` (use MCP-server tools). Use this whenever one of those tools is needed but missing (a `node`/`npm`/`gws`/`gcloud`/`agents-cli`/`mcp-cli` command returns "command not found"), or before starting any task that requires one — Google Workspace work (Drive, Gmail, Sheets, Calendar, Chat), GCP via `gcloud`, calling another agent deployed remotely over HTTP (Cloud Run or Vertex Agent Runtime), or using tools exposed by an MCP server. Setup only (install + config + headless auth); each tool's own usage lives in its own skill(s).

5k tokens
Hubspot Customer Prep
by openai
vendor

Use when preparing HubSpot customer briefs for meetings, renewals, QBRs, sales calls, escalations, handoffs, or follow-ups.

417 tokens

How to use it

Copy the folder

Take ximilalaxiang/delive-transcript-analyzer from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.