Skip to main content
Glama
pratnayake-alphasights

Transcript MCP spike

Transcript MCP spike

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

Related MCP server: agentops-mcp

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.

Install Server
F
license - not found
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

  • A paid remote MCP for AI SDK data query MCP, built to return verdicts, receipts, usage logs, and aud

  • Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/pratnayake-alphasights/mcp-spike'

If you have feedback or need assistance with the MCP directory API, please join our Discord server