Encodian MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Encodian MCP or direct API to automate document processing, manage files, streamline workflows, and extract metadata through natural language.

Encodian logoEncodian
Api Key

Encodian provides document management and automation tools for Microsoft 365. Enhance productivity with streamlined workflows and seamless file handling.

69 Tools

Try Encodian now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Encodian
Try asking
TOOLS

Supported Tools

Every Encodian action and event your agent gets out of the box.

Add Attachments to PDF

Tool to add file attachments to a PDF document.

Add Image Watermark to PDF

Tool to add an image watermark to a PDF document.

Add Image Watermark to PDF (Advanced)

Tool to add an advanced image watermark to a PDF with precise control over positioning, opacity, scale, quality, and rotation.

Array Add Items

Tool to add items to a JSON array at a specified position (first, last, or specific index).

Create ZIP Archive

Tool to create a ZIP archive from multiple documents.

Apply AI OCR to PDF

Tool to apply AI-powered OCR to a PDF document with optional preprocessing filters.

Apply OCR to PDF (Standard)

Tool to apply standard OCR to a PDF document with optional preprocessing filters.

Decode Base64 String

Tool to decode a Base64 string to a file.

Base64 Encode

Tool to encode a string to Base64.

Calculate Date

Tool to calculate a date by adding or subtracting a time interval from a given date.

Check Array Contains Value

Tool to check if a value exists within a JSON array.

Check Text Contains Value

Tool to check if a text string contains a specific value with configurable comparison rules.

Clean String

Tool to clean text by removing control characters, invalid filename characters, and custom character sets.

Clean Up Photo Image

Tool to clean up photo images by removing artifacts, correcting orientation, and enhancing quality.

Combine Arrays

Tool to combine two JSON arrays by matching a key attribute.

Compare Text

Tool to compare two text strings and determine if they match.

Compare Word Documents

Tool to compare two Microsoft Word or PDF documents and generate a document with tracked changes.

Compress Image

Tool to compress an image in JPG or PNG format.

Compress PDF

Tool to compress a PDF document by optimizing images, removing unused objects, and applying various compression techniques.

Concatenate Text

Tool to concatenate an array of text values with an optional delimiter.

Array to JSON

Tool to convert an array to a named JSON object.

Array to XML

Tool to convert a JSON array to XML format.

Convert File to PDF

Tool to convert a file to PDF format.

Convert HTML to Image

Tool to convert HTML content to an image.

Convert HTML to PDF (V2)

Tool to convert HTML content or a URL to PDF format (V2).

Convert HTML to Word

Tool to convert HTML content to Word (DOCX) format.

Convert Image to Grayscale

Tool to convert an image to grayscale.

Convert Image to PDF

Tool to convert an image file to PDF format with optional OCR.

Convert JSON to Excel

Tool to convert JSON data to Excel format.

Convert JSON to XML

Tool to convert JSON data to XML format.

Convert Time Zone

Tool to convert a date and time value from one time zone to another using Encodian's time zone conversion API.

Convert XML to JSON

Tool to convert XML strings to JSON format.

Count Array Items

Tool to count the number of items in a JSON array or object.

Create QR Code

Tool to generate a QR code barcode image with customizable size, colors, border, and encoding options.

Format Text Case

Tool to format text with various case transformations (uppercase, lowercase, title case, etc.

Hash Data

Tool to compute a cryptographic hash (MD5, SHA256, etc.

Unzip File

Extracts all files from a ZIP archive and returns their base64-encoded contents.

Get Convert Excel Schema

Tool to retrieve the dynamic schema for Excel conversion operations.

Get Convert Word Schema

Tool to retrieve the dynamic JSON schema for Word document conversion operations.

Get Convert CAD Schema

Tool to retrieve the dynamic schema for CAD file conversion operations.

Get Convert Image to PDF Schema

Tool to retrieve the dynamic schema for Convert - Image to PDF operations.

Get Convert PowerPoint Schema

Tool to retrieve the dynamic schema for PowerPoint conversion operations.

Get Convert Visio Schema

Tool to retrieve the dynamic schema for Visio file conversion.

Get Create Barcode Schema

Tool to retrieve the dynamic schema for creating a barcode.

Get Crop Image Schema

Tool to retrieve the dynamic schema for the Crop Image action.

Get Dynamic Schema for HTTP Request

Tool to retrieve the dynamic schema for the HTTP Request utility based on authentication type.

Get Word Insert Text Schema

Tool to retrieve the dynamic schema for Word Insert Text operations.

Get File Properties

Tool to retrieve properties of a file.

Get Operation Status for AIRunPromptText

Tool to get the operation status of an AIRunPromptText operation.

Get Operation Status for Encodian Send to Filer

Tool to get the operation status for an Encodian Send to Filer operation.

Get Operation Status Extract Image

Tool to retrieve the operation status of a PDF ExtractImage operation.

Get Operation Status for ExtractTextRegion

Tool to retrieve the operation status of an ExtractTextRegion operation.

Get Operation Status File Only

Tool to retrieve operation status for file-only operations.

Get Operation Status for Image Extract Text

Tool to get the operation status of an ImageExtractText operation.

Get Operation Status for Multiple Files

Tool to retrieve the operation status of a Word MultipleFiles operation.

Get Operation Status - PDF Split Barcode

Tool to retrieve operation status for a PDF split barcode operation.

Get Operation Status for Split Document

Tool to retrieve the operation status of a PDF SplitDocument operation.

Get Sign PDF Schema

Tool to retrieve the dynamic schema for PDF signing operations.

Get Subscription Status

Tool to retrieve Encodian subscription status for Flowr and Vertr.

Resize Image

Tool to resize an image by percentage or dimensions.

Move File

Tool to move a file between containers.

Add PDF Header Footer

Tool to add HTML header and footer to a PDF.

Get PDF Metadata

Extract comprehensive metadata and properties from PDF documents.

Watermark PDF

Tool to apply a text watermark to a PDF.

Read QR Code from Document

Tool to read QR codes from PDF or DOCX documents.

Word - Replace Text With Image

Tool to replace text with an image in a Word document.

Validate Email Address

Validates an email address string against a custom regex pattern using Encodian's validation API.

Validate URL Availability

Tool to validate the availability of a specified URL.

Write Range to Excel

Tool to write values to a cell range in an Excel worksheet.

SETUP GUIDE

Connect Encodian MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Get PDF metadata for the latest uploaded report' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Encodian API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Encodian Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Extract PDF metadata for quarterly report document.'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Encodian actions with your Agent

Why Use Composio?

AI Native Encodian Integration

  • Supports both Encodian MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Encodian data

Managed Auth

  • Built-in API key handling with secure credential management
  • Central place to manage, scope, and revoke Encodian access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Encodian
  • Scoped, least privilege access to Encodian resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Encodian requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Encodian.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Encodian tool your agent needs.Free to start.

Start building