Skip to main content
Glama
ssm82

syntx-ai-mcp

by ssm82

transcribe

Convert audio files to text. Supply the audio as a server file path or inline base64 content to get the transcribed text.

Instructions

Transcribe an audio file to text via syntx.ai (POST /api/v1/audio/transcribe). Provide a single file either as path (server filesystem; stdio transport only) or as content_base64 with filename. IMPORTANT: when the server runs over the HTTP transport, path is rejected (arbitrary server-side file reads by remote clients) — use content_base64 instead. Limit 50 MB; accepted formats: mp3, wav, mpeg. Returns { text }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNoPath to an audio file on the MCP server filesystem. stdio transport only — rejected over HTTP. Use content_base64 over HTTP.
filenameNoFilename. Required when using `content_base64` (used for MIME inference and the upload name).
mime_typeNoOptional MIME type override (auto-detected from extension if omitted).
content_base64NoInline base64 audio payload (optionally with a `data:<mime>;base64,` prefix). Mutually exclusive with `path`. Preferred for the HTTP transport.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses security-related behavior (path rejection over HTTP), constraints (50 MB limit, accepted formats), and the return shape ({ text }). It doesn't cover auth or rate limits, but the key behaviors are well explained.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, dense paragraph. It front-loads the purpose, then covers transport, limits, and return. There is no fluff, though it could be more structured with bullets, but it's concise and informative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 4 parameters with no required fields, no output schema, and no annotations, the description is quite complete. It explains the main operation, parameter selection, constraints, and return format, leaving few unanswered questions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value by emphasizing the transport-specific behavior of `path` and `content_base64`, and clarifies `filename` is required with `content_base64`, complementing the schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Transcribe an audio file to text via syntx.ai (POST /api/v1/audio/transcribe).' It uses a specific verb and resource, and clearly distinguishes from siblings like generate-audio.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage guidance: it directs using `path` for stdio and `content_base64` for HTTP, warns that `path` is rejected over HTTP, and specifies size and format limits. This effectively tells when and how to use the tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/ssm82/syntx-ai-mcp'

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