Transcript MCP spike
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Transcript MCP spikesearch transcripts for discussions about the new pricing model"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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:
stdio — the MCP client spawns the process (default)
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:httpOr with auto-reload while editing TypeScript:
npm run dev:httpThen configure the client with a URL:
{
"mcpServers": {
"transcripts": {
"url": "http://127.0.0.1:3000/mcp"
}
}
}Optional env vars:
PORT— listen port (default3000)MCP_TRANSPORT=http— same as passing--http
Inspector:
npx @modelcontextprotocol/inspector http://127.0.0.1:3000/mcpstdio (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://allreturns the complete JSON dataset.
Tools:
list_transcriptslists metadata and supports participant and tag filters.get_transcriptreturns a full transcript by ID.search_transcriptssearches 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.
Maintenance
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
- Flicense-qualityDmaintenanceEnables file system operations, web scraping, and AI-powered search through MCP tools for use by LLM agents.Last updated1
- AlicenseAqualityCmaintenanceExposes analytics from Claude Code transcripts as MCP tools, enabling cost, audit, safety, and efficiency queries through natural language.Last updated4MIT
- AlicenseAqualityCmaintenanceRead-only access to your Gilbert meetings, transcripts and summaries over MCP — list, search, and fetch transcripts and summaries.Last updated5651MIT
- FlicenseAqualityCmaintenanceProvides YouTube video transcripts (text and metadata) as MCP tools for AI hosts like Claude Code, enabling summarization, search, and Q&A without watching the video.Last updated2
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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