Related MCP Server Resources

Explore more AI models, providers, and integration options:

  • Explore AI Models
  • Explore AI Providers
  • Explore MCP Servers
  • LangDB Pricing
  • Documentation
  • AI Industry Blog
  • Vertex AI MCP Server
  • IR Toolshed MCP Server
  • MCP Server
  • Amazon VPC Lattice MCP Server
  • CucumberStudio MCP Server
Back to MCP Servers
Transcripter MCP Server

Transcripter MCP Server

Public
zentala/zntl-mcp-server

A Model Context Protocol server that provides AI-powered features for the Transcripter project, including tools for searching and summarizing transcriptions and resources for accessing transcription and analysis data.

Verified
typescript
0 tools
May 30, 2025
Updated May 30, 2025

MCP Server for Transcripter

A Model Context Protocol (MCP) server implementation for the Transcripter project. This package provides tools and resources for AI-powered features using the MCP standard.

Features

Tools

  • test-api: Test API endpoints and return the results
  • transcription-search: Search transcriptions with filtering and pagination
  • transcription-summary: Generate a summary of a transcription using AI

Resources

  • transcription://{id}: Access transcription data by ID
  • analysis://{id}: Access analysis data by ID

Requirements

  • Node.js >= 18.0.0
  • npm >= 7.0.0

Installation

npm install

Building

# Build for both ESM and CommonJS npm run build # Build for ESM only npm run build:esm # Build for CommonJS only npm run build:cjs

Running

# Start the MCP server on the default port (3500) npm run server # Start the MCP server on a custom port npm run server 4000

Testing

npm test

Usage Examples

Using the test-api tool

import { Client } from "@modelcontextprotocol/sdk/client"; import { SSEClientTransport } from "@modelcontextprotocol/sdk/client/sse"; async function testApiEndpoint() { // Connect to the MCP server const transport = new SSEClientTransport("http://localhost:3500/sse", "http://localhost:3500/message"); const client = new Client(); await client.connect(transport); // Use the test-api tool const result = await client.tools.execute("test-api", { endpoint: "transcriptions", method: "GET", }); console.log(result); }

Using the transcription resource

import { Client } from "@modelcontextprotocol/sdk/client"; import { SSEClientTransport } from "@modelcontextprotocol/sdk/client/sse"; async function getTranscription(id: number) { // Connect to the MCP server const transport = new SSEClientTransport("http://localhost:3500/sse", "http://localhost:3500/message"); const client = new Client(); await client.connect(transport); // Access the transcription resource const transcription = await client.resources.get(`transcription://${id}`); console.log(transcription); }

Integration with Transcripter

This MCP server integrates with the Transcripter project to provide AI-powered features for transcriptions and analyses. It serves as a standardized interface for AI model interactions.

Project Structure

  • src/cli.ts: Command-line interface for starting the MCP server
  • src/tools/: Implementation of MCP tools
  • src/resources/: Implementation of MCP resource providers
  • src/tests/: Tests for tools and resources

License

MIT

Publicly Shared Threads0

Discover shared experiences

Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!

Share your threads to help others
Related MCPs5
  • Vertex AI MCP Server
    Vertex AI MCP Server

    Implementation of Model Context Protocol (MCP) server that provides tools for accessing Google Cloud...

    20 tools
    Added May 30, 2025
  • IR Toolshed MCP Server
    IR Toolshed MCP Server

    A Model Context Protocol server that provides network analysis tools for security professionals, ena...

    Added May 30, 2025
  • MCP Server
    MCP Server

    A Model Context Protocol server that provides greeting tools, resources, and prompts, demonstrating ...

    Added May 30, 2025
  • Amazon VPC Lattice MCP Server
    Amazon VPC Lattice MCP Server

    A Model Context Protocol server that provides tools for accessing and managing AWS VPC Lattice infor...

    2 tools
    Added May 30, 2025
  • CucumberStudio MCP Server
    CucumberStudio MCP Server

    Implements a Model Context Protocol server that provides context from CucumberStudio to AI assistant...

    Added May 30, 2025