Hosted MCP setup
Connect to the stateless Streamable HTTP server for public-link transcription.
Endpoint
https://fast-transcriber.com/api/mcpThe hosted server is stateless and accepts MCP Streamable HTTP requests through POST. HTTP GET and DELETE return 405.
Client configuration
{
"mcpServers": {
"fast-transcriber": {
"url": "https://fast-transcriber.com/api/mcp",
"headers": {
"Authorization": "Bearer ft_live_replace_me"
}
}
}
}Client capability required
The hosted endpoint currently requires an MCP client that can attach a custom bearer header.
Hosted tools
| Field | Type | Description |
|---|---|---|
transcribe_url | url, speaker_diarization | Queue one public media URL. |
get_transcription | id | Get one job and its completed result. |
list_transcriptions | limit | List recent jobs for the API account. |
Boundaries
- The hosted server can queue public URLs, retrieve one job, and list recent jobs.
- It cannot read files from the user's computer.
- It does not expose a wait tool; the calling assistant must check status again.
- Use the local package when an AI client must upload permitted local files.