md-to-text
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_HOST | No | HTTP server host | localhost |
| MCP_MODE | No | Server mode (stdio/http) | stdio |
| MCP_PORT | No | HTTP server port | 3000 |
| URL_TIMEOUT | No | URL request timeout (ms) | 30000 |
| MAX_FILE_SIZE | No | Max file size (bytes) | 10485760 |
| ALLOWED_EXTENSIONS | No | Allowed file extensions | .md,.markdown,.txt |
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 |
|---|---|
| convert_textB | Convert markdown text to plain text |
| convert_fileB | Convert local markdown file to plain text |
| convert_urlB | Fetch remote URL markdown content and convert to plain text |
| batch_convertA | Batch convert markdown files in a directory |
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 4 tools
Each tool targets a distinct input source: raw text, local file, URL, and directory batch. No overlap in purpose or behavior.
Three tools follow the convert_<source> pattern (convert_text, convert_file, convert_url), but batch_convert inverts the pattern. This is a minor deviation that doesn't hinder understanding.
Four tools cover the core input types for a markdown-to-text conversion server. Each tool has a clear and necessary role, and the count is well-scoped.
The tool surface covers all common input methods (text, file, URL, batch) with no obvious gaps for the stated purpose. Minor options like specifying output format are absent but not critical.