# Encodian — how to use (mcp.ai)

Connect your Encodian account and use 69 tools for documents straight from your AI agent. Connect with your own API key. Encodian provides a suite of document management and automation tools, including Flowr, Filer, and Indxr, designed to enhance productivity and streamline workflows within Microsoft 365 environments.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_encodian?ms=1787293560000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `encodian_add_attachments_to_pdf`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/encodian`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/encodian/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/encodian/add/attachments/to/pdf` — Tool to add file attachments to a PDF document. Use when you need to embed files within a PDF as attachments that can be extracted later.
  - body: { FileContent: object, attachments: object[] }
- `POST https://api.mcp.ai/api/encodian/add/image/watermark` — Tool to add an image watermark to a PDF document. Use when you need to overlay an image on PDF pages with configurable opacity and orientation.
  - body: { Opacity?: number, FileName: string, alignImage?: boolean, Orientation?: string, fileContent?: object, operationId?: string, watermarkId?: integer, skipFirstPage?: boolean, FinalOperation?: boolean, fileContentBase64?: string, watermarkFilename: string, watermarkFileContent?: object, watermarkFileContentBase64?: string }
- `POST https://api.mcp.ai/api/encodian/add/image/watermark/advanced` — Tool to add an advanced image watermark to a PDF with precise control over positioning, opacity, scale, quality, and rotation. Use when you need to overlay a watermark image onto PDF pages with page-l
  - body: { scale?: number, applyTo?: string, opacity?: number, quality?: integer, FileName: string, alignImage?: boolean, FileContent: object, operationId?: string, pageNumbers?: integer[], watermarkId?: integer, imageXOffset?: number, imageYOffSet?: number, rotationAngle?: number, skipFirstPage?: boolean, FinalOperation?: boolean, addToBackground?: boolean, ignorePageNumbers?: integer[], watermarkFilename: string, WatermarkFileContent: object }
- `POST https://api.mcp.ai/api/encodian/add/items/to/array` — Tool to add items to a JSON array at a specified position (first, last, or specific index). Use when you need to append or insert elements into an existing JSON array structure.
  - body: { data: string, path?: string, items: string, itemIndex?: integer, itemPosition?: string }
- `POST https://api.mcp.ai/api/encodian/add/to/zip` — Tool to create a ZIP archive from multiple documents. Use when you need to compress and package multiple files into a single ZIP file, with optional password protection and folder structure.
  - body: { Password?: string, encoding?: string, documents: object[], encryption?: string, FinalOperation?: boolean, outputFilename: string }
- `POST https://api.mcp.ai/api/encodian/apply/ai/ocr/pdf/document` — Tool to apply AI-powered OCR to a PDF document with optional preprocessing filters. Use when you need to extract text from scanned PDFs or images by recognizing and converting visual text into machine
  - body: { Deskew?: boolean, Rotate?: boolean, Binarize?: boolean, Despeckle?: boolean, FileContent: object, RemoveBorder?: boolean, AverageFilter?: boolean, SmoothObjects?: boolean, ImageDetergent?: boolean, RemoveHolePunch?: boolean, RemoveDotShading?: boolean, SmoothBackground?: boolean, RotateConfidenceLevel: integer, AdjustBrightnessContrast?: boolean }
- `POST https://api.mcp.ai/api/encodian/apply/ocr/pdf/document` — Tool to apply standard OCR to a PDF document with optional preprocessing filters. Use when you need to extract text from scanned PDFs or images by recognizing and converting visual text into machine-r
  - body: { Deskew?: boolean, ocrType?: string, Binarize?: boolean, FileName: string, Despeckle?: boolean, AutoRotate?: boolean, FileContent: object, cleanUpType?: string, ocrLanguage?: string, operationId?: string, RemoveBorder?: boolean, SmoothObjects?: boolean, FinalOperation?: boolean, ImageDetergent?: boolean, pdfaCompliance?: boolean, RemoveHolePunch?: boolean, RemoveBlankPages?: boolean, RemoveDotShading?: boolean, SmoothBackground?: boolean, ApplyAverageFilter?: boolean, pdfaComplianceLevel?: string, AdjustBrightnessContrast?: boolean, AutoRotateConfidenceLevel: integer }
- `POST https://api.mcp.ai/api/encodian/base64/decode` — Tool to decode a Base64 string to a file. Use when you need to extract binary content (e.g., PDF, image) from Base64 data.
  - body: { FileName: string, Base64String: string }
- `POST https://api.mcp.ai/api/encodian/base64/encode` — Tool to encode a string to Base64. Use when you need to convert text into Base64 representation for use in other operations.
  - body: { value: string }
- `POST https://api.mcp.ai/api/encodian/calculate/date` — Tool to calculate a date by adding or subtracting a time interval from a given date. Use when you need to compute a future or past date based on a starting date and time offset.
  - body: { date: string, interval: integer, operation: string, cultureName?: string, measurement: string, daysToExclude?: string, datesToExclude?: string }
- `POST https://api.mcp.ai/api/encodian/check/array/contains/value` — Tool to check if a value exists within a JSON array. Use when you need to verify if a specific value is present in an array, with optional case-insensitive matching and JSONPath support for nested dat
  - body: { data: string, path?: string, value: string, ignoreCase?: boolean }
- `POST https://api.mcp.ai/api/encodian/check/text/contains/value` — Tool to check if a text string contains a specific value with configurable comparison rules. Use when you need to validate whether text contains a substring with options for case sensitivity and cultu
  - body: { text: string, value: string, ignoreCase?: boolean, cultureName?: string, comparisonConfiguration?: string }
- `POST https://api.mcp.ai/api/encodian/clean/string` — Tool to clean text by removing control characters, invalid filename characters, and custom character sets. Use when you need to sanitize or clean text strings for safe usage in filenames or other cont
  - body: { text: string, trimResult?: boolean, removeCharacterSet?: string, removeControlChars?: boolean, removeInvalidFileNameChars?: boolean }
- `POST https://api.mcp.ai/api/encodian/clean/up/image/photo` — Tool to clean up photo images by removing artifacts, correcting orientation, and enhancing quality. Use when you need to improve image quality through operations like auto-rotation, deskewing, despeck
  - body: { Blur?: boolean, Deskew?: boolean, Diffuse?: boolean, Binarize?: boolean, Contrast?: boolean, FileName: string, Despeckle?: boolean, AutoRotate?: boolean, FileContent: object, cleanUpType?: string, ColorBalance?: boolean, RemoveBorder?: boolean, RemoveRedeye?: boolean, FinalOperation?: boolean, AutoRotateConfidenceLevel?: integer }
- `POST https://api.mcp.ai/api/encodian/combine/arrays` — Tool to combine two JSON arrays by matching a key attribute. Use when you need to merge data from two arrays based on a common identifier.
  - body: { data: string, path?: string, dataKey: string, mergeData: string, mergeDataKey?: string, fieldsToMerge?: string, mergeDataPath?: string }
- `POST https://api.mcp.ai/api/encodian/compare/text` — Tool to compare two text strings and determine if they match. Use when you have two strings and need to verify if they are equal.
  - body: { ignoreCase?: boolean, primaryText: string, secondaryText: string }
- `POST https://api.mcp.ai/api/encodian/compare/word/documents` — Tool to compare two Microsoft Word or PDF documents and generate a document with tracked changes. Use when you need to identify differences between two document versions. The output document highlight
  - body: { author?: string, ignoreFields?: boolean, ignoreTables?: boolean, fileContentOne: string, fileContentTwo: string, ignoreComments?: boolean, caseInsensitive?: boolean, ignoreFootnotes?: boolean, ignoreTextboxes?: boolean, ignoreFormatting?: boolean, ignoreHeadersAndFooters?: boolean }
- `POST https://api.mcp.ai/api/encodian/compress/image` — Tool to compress an image in JPG or PNG format. Use when you need to reduce the file size of an image while maintaining format compatibility.
  - body: { FileName: string, ImageType: string, FileContent: object }
- `POST https://api.mcp.ai/api/encodian/compress/pdf` — Tool to compress a PDF document by optimizing images, removing unused objects, and applying various compression techniques. Use when you need to reduce PDF file size while maintaining readability and 
  - body: { FileContent: object, ImageQuality?: integer, ResizeImages?: boolean, UnembedFonts?: boolean, FlattenFields?: boolean, MaxResolution?: integer, CompressImages?: boolean, DeleteAnnotations?: boolean, RemovePrivateInfo?: boolean, FlattenAnnotations?: boolean, RemoveUnusedObjects?: boolean, RemoveUnusedStreams?: boolean, LinkDuplicateStreams?: boolean, AllowReusePageContent?: boolean }
- `POST https://api.mcp.ai/api/encodian/concatenate/text` — Tool to concatenate an array of text values with an optional delimiter. Use when you need to combine multiple strings into a single text value with optional separator.
  - body: { textList: string[], delimiter?: string, trimResult?: boolean }
- `POST https://api.mcp.ai/api/encodian/convert/array/to/json` — Tool to convert an array to a named JSON object. Use when you need to wrap an array in a JSON object with a specific key name, optionally selecting a specific array from nested JSON using JSONPath.
  - body: { data: string, name: string, path?: string }
- `POST https://api.mcp.ai/api/encodian/convert/array/to/xml` — Tool to convert a JSON array to XML format. Use when you need to transform JSON data into XML structure with custom root and item node names.
  - body: { data: string, item: string, path?: string, root: string }
- `POST https://api.mcp.ai/api/encodian/convert/file/to/pdf` — Tool to convert a file to PDF format. Use when you need to transform documents (Word, Excel, PowerPoint, text files, etc.) into PDF format with optional bookmarks, markup removal, and PDF/A compliance
  - body: { FileName: string, CultureName?: string, FileContent: object, FinalOperation?: boolean, outputFilename: string, pdfaCompliance?: boolean, GenerateBookmarks?: boolean, pdfaComplianceLevel?: string, removeDocumentMarkup?: boolean }
- `POST https://api.mcp.ai/api/encodian/convert/html/to/image` — Tool to convert HTML content to an image. Use when you need to render HTML as an image file, supporting URL, raw HTML string, or HTML file content with optional JavaScript execution and CSS styling co
  - body: { Url?: string, delay?: integer, cssType?: string, htmlData?: string, imgWidth?: integer, imgHeight?: integer, fileContent?: string, decodeHtmlData?: boolean, enableJavaScript?: boolean }
- `POST https://api.mcp.ai/api/encodian/convert/html/to/pdf/v2` — Tool to convert HTML content or a URL to PDF format (V2). Use when you need to transform HTML strings, HTML files, or live web pages into PDF documents with advanced options like custom page sizes, ma
  - body: { Url?: string, delay?: integer, scale?: number, cssType?: string, htmlData?: string, pageSize?: string, viewPort?: string, createToC?: boolean, marginTop?: number, pageWidth?: integer, marginLeft?: number, pageHeight?: integer, fileContent?: string, marginRight?: number, marginBottom?: number, decodeHtmlData?: boolean, createBookmarks?: boolean, pageOrientation?: string, enableHyperlinks?: boolean, enableJavaScript?: boolean, pageRotationAngle?: string }
- `POST https://api.mcp.ai/api/encodian/convert/html/to/word` — Tool to convert HTML content to Word (DOCX) format. Use when you need to transform HTML documents, web pages, or HTML strings into Word documents with customizable page settings, margins, and complian
  - body: { htmlUrl?: string, FileName?: string, encoding?: string, htmlData?: string, pageSize?: string, MarginTop?: number, pageWidth?: integer, MarginLeft?: number, pageHeight?: integer, MarginRight?: number, fileContent?: string, MarginBottom?: number, FinalOperation?: boolean, decodeHtmlData?: boolean, outputFilename: string, pageOrientation?: string, WordComplianceLevel?: string }
- `POST https://api.mcp.ai/api/encodian/convert/image/to/grayscale` — Tool to convert an image to grayscale. Use when you need to remove color from an image and convert it to shades of gray.
  - body: { fileContent: string }
- `POST https://api.mcp.ai/api/encodian/convert/image/to/pdf` — Tool to convert an image file to PDF format with optional OCR. Use when you need to transform image files (PNG, JPG, etc.) into PDF documents, optionally extracting text via OCR.
  - body: { ocrType?: string, fileContent: object, ocrLanguage?: string }
- `POST https://api.mcp.ai/api/encodian/convert/json/to/excel` — Tool to convert JSON data to Excel format. Use when you need to transform JSON arrays into Excel spreadsheets with customizable formatting options.
  - body: { row?: integer, column?: integer, jsonData?: string, dateFormat?: string, cultureName?: string, fileContent?: string, ignoreNulls?: boolean, isTitleBold?: boolean, numericFormat?: string, worksheetName?: string, outputFilename?: string, titleFontColour?: string, isTitleTextWrapped?: boolean, convertNumericAndDate?: boolean, ignoreAttributeTitles?: boolean }
- `POST https://api.mcp.ai/api/encodian/convert/json/to/xml` — Tool to convert JSON data to XML format. Use when you need to transform JSON strings into XML documents with customizable root element names and array attributes.
  - body: { json: string, rootName?: string, includeArrayAttribute?: boolean }
- `POST https://api.mcp.ai/api/encodian/convert/time/zone/enc` — Tool to convert a date and time value from one time zone to another using Encodian's time zone conversion API. Use when you need to transform timestamps between different time zones (e.g., UTC to East
  - body: { date: string, cultureName?: string, newTimeZone: string, currentTimeZone?: string }
- `POST https://api.mcp.ai/api/encodian/convert/xml/to/json` — Tool to convert XML strings to JSON format. Use when you need to transform XML data into a JSON representation for easier parsing or processing.
  - body: { xml: string, omitRootObject?: boolean }
- `POST https://api.mcp.ai/api/encodian/count/array/items` — Tool to count the number of items in a JSON array or object. Use when you need to determine the size of an array or evaluate specific nodes using JSONPath expressions.
  - body: { data: string, path?: string }
- `POST https://api.mcp.ai/api/encodian/create/qr/code` — Tool to generate a QR code barcode image with customizable size, colors, border, and encoding options. Use when you need to create QR codes for URLs, contact information, or any text data.
  - body: { width?: integer, height?: integer, sizeMode?: string, backColor?: string, foreColor?: string, encodeMode?: string, encodeType?: string, resolution?: integer, barcodeData: string, borderColor?: string, borderStyle?: string, borderWidth?: integer, visibleBorder?: boolean, captionAboveFont?: string, captionAboveText?: string, captionBelowFont?: string, captionBelowText?: string, textEncodingType?: string, captionAboveColor?: string, captionBelowColor?: string, barcodeImageFormat: string, captionAboveNoWrap?: boolean, captionBelowNoWrap?: boolean, captionAboveFontSize?: integer, captionBelowFontSize?: integer, captionAboveAlignment?: string, captionBelowAlignment?: string }
- `POST https://api.mcp.ai/api/encodian/format/text/case` — Tool to format text with various case transformations (uppercase, lowercase, title case, etc.). Use when you need to standardize or change the capitalization of text strings.
  - body: { text: string, action: string, cultureName?: string }
- `POST https://api.mcp.ai/api/encodian/general/hash` — Tool to compute a cryptographic hash (MD5, SHA256, etc.) of text or file data. Use when you need to verify integrity or generate digests.
  - body: { Case?: string, Data: string, DataType: string, OutputType: string, EncodingType?: string, DigestAlgorithm: string }
- `POST https://api.mcp.ai/api/encodian/general/unzip/file` — Extracts all files from a ZIP archive and returns their base64-encoded contents. Supports password-protected archives and optionally extracts files from nested folders. Use this when you need to acces
  - body: { file: object, password?: string, recursive?: boolean }
- `POST https://api.mcp.ai/api/encodian/get/convert/excel/schema` — Tool to retrieve the dynamic schema for Excel conversion operations. Returns the schema definition including required fields and available properties based on the specified output format. Use when you
  - body: { outputFormat?: string }
- `POST https://api.mcp.ai/api/encodian/get/convert/word/schema` — Tool to retrieve the dynamic JSON schema for Word document conversion operations. Use when you need to discover available parameters and their constraints for converting Word documents to various form
  - body: { outputFormat?: string }
- `POST https://api.mcp.ai/api/encodian/get/dynamic/schema/convert/cad` — Tool to retrieve the dynamic schema for CAD file conversion operations. Returns the schema definition that specifies available parameters for converting CAD files to various output formats. Use when y
  - body: { outputFormat?: string }
- `POST https://api.mcp.ai/api/encodian/get/dynamic/schema/convert/image/to/pdf` — Tool to retrieve the dynamic schema for Convert - Image to PDF operations. Use when you need to understand the available configuration options for image-to-PDF conversion based on OCR type.
  - body: { ocrType?: string }
- `POST https://api.mcp.ai/api/encodian/get/dynamic/schema/convert/power/point` — Tool to retrieve the dynamic schema for PowerPoint conversion operations. Use when you need to understand the available parameters and requirements for converting PowerPoint files to different formats
  - body: { outputFormat?: string }
- `POST https://api.mcp.ai/api/encodian/get/dynamic/schema/convert/visio` — Tool to retrieve the dynamic schema for Visio file conversion. Returns format-specific field definitions based on the selected output format (PDF, PNG, SVG, etc.). Use when you need to understand what
  - body: { outputFormat?: string }
- `POST https://api.mcp.ai/api/encodian/get/dynamic/schema/create/barcode` — Tool to retrieve the dynamic schema for creating a barcode. Use this to understand the required parameters and configuration options for a specific barcode type before creating it.
  - body: { barcodeType?: string }
- `POST https://api.mcp.ai/api/encodian/get/dynamic/schema/crop/image` — Tool to retrieve the dynamic schema for the Crop Image action. Returns an OpenAPI-style schema definition that varies based on the specified crop type (Border or Rectangle).
  - body: { cropType?: string }
- `POST https://api.mcp.ai/api/encodian/get/dynamic/schema/send/http/request` — Tool to retrieve the dynamic schema for the HTTP Request utility based on authentication type. Use when you need to understand what parameters are required for sending HTTP requests with specific auth
  - body: { authenticationType?: string }
- `POST https://api.mcp.ai/api/encodian/get/dynamic/schema/word/insert/text` — Tool to retrieve the dynamic schema for Word Insert Text operations. Use when you need to understand the available parameters and their types for inserting text into Word documents.
  - body: { searchBy?: string }
- `POST https://api.mcp.ai/api/encodian/get/file/properties` — Tool to retrieve properties of a file. Attempts multiple Encodian Filer endpoints and fallbacks.
  - body: { BlobName: string, ContainerName: string, IncludeMetadata?: boolean }
- `POST https://api.mcp.ai/api/encodian/get/operation/status/ai/run/prompt/text` — Tool to get the operation status of an AIRunPromptText operation. Use when you need to check the completion status of a previously initiated AI prompt operation.
  - body: { operationId: string }
- `POST https://api.mcp.ai/api/encodian/get/operation/status/encodian/send/to/filer` — Tool to get the operation status for an Encodian Send to Filer operation. Use when you need to check the completion status and retrieve results from a previously submitted Send to Filer operation.
  - body: { operationId?: string }
- `POST https://api.mcp.ai/api/encodian/get/operation/status/extract/image` — Tool to retrieve the operation status of a PDF ExtractImage operation. Use when you need to check if an image extraction operation has completed, is queued, or has failed.
  - body: { operationId?: string }
- `POST https://api.mcp.ai/api/encodian/get/operation/status/extract/text/region` — Tool to retrieve the operation status of an ExtractTextRegion operation. Use when you need to check if a text region extraction operation has completed and retrieve the extracted text results.
  - body: { operationId: string }
- `POST https://api.mcp.ai/api/encodian/get/operation/status/file/only` — Tool to retrieve operation status for file-only operations. Use when you need to check if an asynchronous file operation has completed.
  - body: { operationId?: string }
- `POST https://api.mcp.ai/api/encodian/get/operation/status/image/extract/text` — Tool to get the operation status of an ImageExtractText operation. Use when you need to check if an image text extraction operation has completed and retrieve the extracted text.
  - body: { operationId?: string }
- `POST https://api.mcp.ai/api/encodian/get/operation/status/multiple/files` — Tool to retrieve the operation status of a Word MultipleFiles operation. Use when you need to check the status and retrieve results of a previously submitted batch operation on multiple Word documents
  - body: { operationId?: string }
- `POST https://api.mcp.ai/api/encodian/get/operation/status/pdf/split/barcode` — Tool to retrieve operation status for a PDF split barcode operation. Use when you need to check the status and results of an asynchronous PDF split operation initiated previously.
  - body: { operationId: string }
- `POST https://api.mcp.ai/api/encodian/get/operation/status/split/document` — Tool to retrieve the operation status of a PDF SplitDocument operation. Use when you need to check the progress or completion status of a previously initiated split document operation by providing its
  - body: { operationId?: string }
- `POST https://api.mcp.ai/api/encodian/get/sign/pdf/schema` — Tool to retrieve the dynamic schema for PDF signing operations. Returns the schema definition including required fields and available properties based on the specified certificate type. Use when you n
  - body: { certificateType?: string }
- `POST https://api.mcp.ai/api/encodian/get/subscription/status` — Tool to retrieve Encodian subscription status for Flowr and Vertr. Use when you need to check remaining credits, billing interval, subscription level, or expiry date.
- `POST https://api.mcp.ai/api/encodian/image/resize` — Tool to resize an image by percentage or dimensions. Use when you need to scale or reshape an image with optional aspect-ratio enforcement.
  - body: { FileName: string, ImageWidth?: integer, FileContent: object, ImageHeight?: integer, ImageResizeType: string, ImageResolution?: integer, ResizePercentage?: integer, MaintainAspectRatio?: boolean }
- `POST https://api.mcp.ai/api/encodian/move/file` — Tool to move a file between containers. Use when you need to relocate a blob within your storage without manually copying then deleting.
  - body: { Overwrite?: boolean, SourceBlob: string, DestinationBlob: string, SourceContainer: string, DestinationContainer: string }
- `POST https://api.mcp.ai/api/encodian/pdf/add/header/footer` — Tool to add HTML header and footer to a PDF. Use when you need to embed consistent headers or footers across pages with margin and range options.
  - body: { ApplyTo?: string, FileName: string, MarginTop?: number, MarginLeft?: number, ReturnFile?: boolean, FileContent: object, MarginRight?: number, OperationId?: string, PageNumbers?: integer[], MarginBottom?: number, SkipFirstPage?: boolean, FinalOperation?: boolean, HtmlHeaderFooter: string, IgnorePageNumbers?: integer[], HtmlHeaderFooterLocation: string }
- `POST https://api.mcp.ai/api/encodian/pdf/get/metadata` — Extract comprehensive metadata and properties from PDF documents. Returns page count, dimensions, author/creator/producer information, creation/modification dates, PDF format version, compliance flags
  - body: { file: object, Filename?: string }
- `POST https://api.mcp.ai/api/encodian/pdf/watermark` — Tool to apply a text watermark to a PDF. Use when you need to annotate PDF pages with custom labels or marks; supports page selection, positioning, opacity, and rotation.
  - body: { Font?: string, Text: string, ApplyTo?: string, Opacity?: number, XIndent?: integer, YIndent?: integer, Filename: string, TextSize?: integer, TextWrap?: boolean, AutoScale?: boolean, TextLayer?: boolean, ReturnFile?: boolean, TextColour?: string, FileContent: object, OperationId?: string, PageNumbers?: integer[], WatermarkId?: string, ApplyAsImage?: boolean, EncodingType?: string, RotationAngle?: number, SkipFirstPage?: boolean, TextAlignment?: string, TextWrapRowWidth?: integer, IgnorePageNumbers?: integer[], VerticalAlignment?: string, AutoScaleTextWidth?: integer, AutoScaleTextHeight?: integer, HorizontalAlignment?: string }
- `POST https://api.mcp.ai/api/encodian/read/qr/code/from/document` — Tool to read QR codes from PDF or DOCX documents. Returns an array of detected QR code values. Supports configuration of detection confidence, page range, and control character handling.
  - body: { file: object, endPage?: integer, fileType?: string, startPage?: integer, barcodeReadConfidence?: string, barcodeRemoveControlChars?: boolean }
- `POST https://api.mcp.ai/api/encodian/replace/text/with/image` — Tool to replace text with an image in a Word document. Use when you need to substitute text placeholders with images; supports case-sensitive matching, whole-word matching, and replacing all occurrenc
  - body: { fileName: string, replaceAll?: boolean, searchText: string, FileContent: object, cultureName?: string, caseSensitive?: boolean, imageFileName: string, matchWholeWord?: boolean, ImageFileContent: object }
- `POST https://api.mcp.ai/api/encodian/validate/email/address` — Validates an email address string against a custom regex pattern using Encodian's validation API. Use this when you need to check if an email address matches a specific format or pattern. The regex pa
  - body: { regex: string, emailAddress: string }
- `POST https://api.mcp.ai/api/encodian/validate/url/availability` — Tool to validate the availability of a specified URL. Use when needing to confirm if a web address is reachable before processing.
  - body: { url: string, validateURL?: boolean }
- `POST https://api.mcp.ai/api/encodian/write/range` — Tool to write values to a cell range in an Excel worksheet. Use when you need to programmatically update worksheet data by specifying a range and a 2D array of values.
  - body: { file: object, range: string, values: string|integer|number[][], worksheetName?: string, outputFilename?: string }

## Example prompts
- "What can I do in Encodian?"
- "Show me a summary of my Encodian account"

## More
- Page: https://mcp.ai/encodian
- Agent spec (llms.txt): https://mcp.ai/encodian/llms.txt
- Postman collection: https://mcp.ai/encodian/postman.json
