GhostMinutes MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GHOSTMINUTES_API_KEY | No | API key (gm_<32-char-hex>). Without it you get anonymous limits. | |
| GHOSTMINUTES_API_URL | No | Override API base if you proxy through a private edge. Defaults to Railway production. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| transcribe_audio_urlA | Submit a publicly-accessible audio or video URL for transcription with speaker diarization. Returns a job_id you can poll with get_transcription_status, or use transcribe_audio_url_sync to wait synchronously. |
| transcribe_audio_url_syncA | Submit a URL for transcription and poll until completion (up to 5 minutes). Prefer transcribe_audio_url for faster handoff when clients can poll. |
| get_transcription_statusA | Poll GhostMinutes for transcription progress and results using job_id returned by transcribe_audio_url. |
| list_transcriptsA | List your transcription jobs on GhostMinutes (authenticated accounts only). |
| get_transcriptA | Fetch a saved transcription job by id from your GhostMinutes account. |
| delete_transcriptA | Delete a transcription job from your GhostMinutes account (destructive). |
| summarizeA | Summarize transcript text via GhostMinutes hosted AI (/api/ai/chat). Paste transcript content or downstream output from get_transcript. |
| get_creditsA | Show remaining GhostMinutes credits for the authenticated API key. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool has a distinct purpose: delete, list, get, status polling, credit check, summarize, and two transcribe options differentiated by sync/async. No overlap.
Most tools follow verb_noun pattern (e.g., delete_transcript, get_credits), but 'summarize' is a single verb and 'get_transcription_status' uses 'transcription' instead of 'transcript', introducing slight inconsistency.
8 tools is well-scoped for a transcription service: CRUD operations, credits, status, AI summarization, and both async/sync submission. No bloat or deficiency.
Covers full workflow: submit (both modes), poll, get, list, delete, summarize, and credits. Missing an update operation, but that is not essential for transcripts. Minor gap.