- Home
- MCP servers
- Loom Transcript
Loom Transcript
- javascript
0
GitHub Stars
javascript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"bstyler-loom-transcript-mcp": {
"command": "npx",
"args": [
"-y",
"@bstyler/loom-transcript-mcp"
]
}
}
}You run a small MCP server that fetches transcripts and comments from Loom videos. This server helps you convert Loom video content into easily searchable text and discussions, so you can build chatbots, create searchable archives, or automate content analysis.
How to use
Use this MCP server with an MCP client to fetch Loom transcripts and comments by providing a Loom video URL. You can ask it for the transcript text or for the video’s comments, enabling you to surface Loom content in your own tools and workflows. Start a session with the MCP client, then pass a Loom video URL to retrieve either the transcript or the comments.
How to install
Prerequisites: Node.js and npm for building from source, or you can run via NPX or Docker without local dependencies.
{
"mcpServers": {
"loom_transcript": {
"command": "npx",
"args": ["-y", "@bstyler/loom-transcript-mcp"]
}
}
}
Alternatively, run the MCP server via Docker using the following configuration. The container uses the published image name loom-transcript-mcp-fixed.
# Build (when running from source locally)
cd C:\MCPs\loom-transcript-mcp-fixed
docker build -t loom-transcript-mcp .
# Run with Claude-like config
{
"mcpServers": {
"loom_transcript": {
"command": "docker",
"args": ["run", "--rm", "-i", "loom-transcript-mcp"]
}
}
}
From source, you can build and start the server with these steps. They reproduce a typical local development workflow and start the MCP server ready to receive requests.
git clone https://github.com/bStyler/loom-transcript-mcp.git
cd loom-transcript-mcp
npm install
npm run build
node dist/index.js
Additional notes
The MCP exposes two primary functions: getLoomTranscript to fetch transcript text from any public Loom video URL, and getLoomComments to fetch comments from a Loom video URL. Ensure you provide a valid Loom URL when making requests.
Available tools
getLoomTranscript
Fetches the transcript text from any public Loom video URL
getLoomComments
Fetches comments from a Loom video URL