Stt MCP Server

MCP server for dTelecom real-time speech-to-text with x402 micropayments

Local serverstdioTypeScript

What is the Stt MCP MCP server?

MCP server for dTelecom real-time speech-to-text with x402 micropayments. The stt mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

What it actually does

MCP (Model Context Protocol) server for dTelecom real-time speech-to-text with x402 micropayments.

Adding it to your client

@dtelecom/stt-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Its toolset

Everything the assistant can do here goes through one of these:

  • transcribe_file — Transcribe a WAV file (PCM16, 16kHz, mono) to text
  • stt_pricing — Get current pricing ($0.005/min)
  • stt_health — Check service health

Configuration

You will need 3 environment variables: DTELECOM_PRIVATE_KEY, YOUR_PRIVATE_KEY, DTELECOM_STT_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the stt mcp mcp server does with a few real requests.

When to reach for it

This sits in the AI and media services group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Stt MCP's toolset — transcribe_file, stt_pricing, stt_health — is a fair guide to whether it matches your workflow. It is maintained by dtelecom; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
transcribe_fileTranscribe a WAV file (PCM16, 16kHz, mono) to text
stt_pricingGet current pricing ($0.005/min)
stt_healthCheck service health

How to install the Stt MCP MCP server

{
  "mcpServers": {
    "stt": {
      "command": "npx",
      "args": ["-y", "@dtelecom/stt-mcp"],
      "env": {
        "DTELECOM_PRIVATE_KEY": "your-value",
        "YOUR_PRIVATE_KEY": "your-value",
        "DTELECOM_STT_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
DTELECOM_PRIVATE_KEYCredential the server authenticates with.Yes
YOUR_PRIVATE_KEYCredential the server authenticates with.Yes
DTELECOM_STT_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Stt MCP to transcribe file.
  • Use Stt MCP to stt pricing.
  • Use Stt MCP to stt health.

Frequently asked questions

It connects Stt MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (transcribe_file, stt_pricing, stt_health) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Stt MCP directly.