

Data Format Encoder
Function
Available ActionsEach successful request consumes credits as outlined below.
encode-base64-encode5crencode-base64-decode5crencode-url-encode5crencode-url-decode5crencode-html-entity-encode5crencode-html-entity-decode5crencode-escape-json5crencode-unescape-json5crencode-text-to-hex5crencode-hex-to-text5crencode-text-to-binary5crencode-binary-to-text5crencode-rot13-encode5crencode-unicode-escape5crencode-unicode-unescape5cr
Details
A text transformation utility that converts strings between various encoding formats commonly used in web development, data transmission, and programming. It provides bidirectional base64 encoding and decoding for binary-to-text representation used in data URLs, API payloads, and email attachments. URL encoding applies percent-encoding for safe transmission of special characters in query strings and path segments, while URL decoding reverses the process for parsing incoming requests. HTML entity encoding escapes special characters like angle brackets, ampersands, and quotes for safe inclusion in HTML documents, preventing XSS vulnerabilities and rendering issues. JSON string escaping handles special characters including newlines, tabs, backslashes, and quotes for embedding text within JSON structures. Hexadecimal conversion transforms text to and from hex representation for debugging, cryptographic applications, and low-level data inspection. Binary encoding produces space-separated 8-bit representations for educational purposes and bit-level analysis. ROT13 applies the classic letter substitution cipher that shifts characters by 13 positions, useful for simple text obfuscation. Unicode escape sequences convert non-ASCII characters to backslash-u notation for source code compatibility and cross-platform text handling. All operations include metadata about input and output lengths.
Use Cases
Base64 encoding, base64 decoding, binary to text encoding, data URL creation, API payload encoding, file content encoding, image base64 conversion, URL encoding, percent encoding, query string encoding, URL parameter escaping, special character encoding, URL decoding, query string parsing, percent decoding, HTML entity encoding, HTML escaping, XSS prevention, safe HTML output, ampersand encoding, angle bracket escaping, HTML entity decoding, HTML unescaping, entity parsing, JSON string escaping, JSON special character handling, newline escaping, quote escaping, backslash encoding, JSON unescape, JSON string parsing, text to hex conversion, hexadecimal encoding, hex string generation, debug output formatting, hex to text conversion, hexadecimal decoding, hex string parsing, text to binary conversion, binary representation, bit string generation, binary to text conversion, binary decoding, bit string parsing, ROT13 encoding, ROT13 decoding, simple text obfuscation, letter rotation cipher, Unicode escaping, Unicode escape sequences, non-ASCII encoding, source code compatibility, Unicode unescaping, escape sequence parsing, web development encoding, data transformation, character encoding, string manipulation, AI agent encoding, LLM text processing
Dynamic MCP Setup
Connect once through AgentPMT Dynamic MCP, then use approved tools from the same agent connection.
30 Second Setup
STDIO connector for Claude Code, Codex, Cursor, Zed, and other LLMs that require STDIO or custom connections.
npm install -g @agentpmt/mcp-routeragentpmt-setupHosted Streamable HTTPS
MCP endpoint for browser-based apps like ChatGPT, Claude, Grok, or any time you want a streamable connection with no local install.
https://api.agentpmt.com/mcpConfig Example
Use the hosted endpoint directly in clients that support remote MCP. Store your Bearer token in the client config or secret field.
{
"mcpServers": {
"agentpmt": {
"type": "streamable-http",
"url": "https://api.agentpmt.com/mcp",
"headers": {
"Authorization": "Bearer <AGENTPMT_BEARER_TOKEN>",
"x-instance-metadata": "{\"client\":\"generic-mcp\",\"platform\":\"remote\"}"
}
}
}
}Need client videos, organization controls, audit details, and the full feature overview?
More About Dynamic MCPFrequently Asked Questions
How do I connect this tool to an external agent?
You can install the local MCP server by opening a terminal and running:
Install commands
npm install -g @agentpmt/mcp-router
agentpmt-setupThis will connect you to local agents like Claude Code, Windsurf, Grok Build, Cursor, etc.
Alternatively you can connect to the hosted version with this config block, no installation required:
Hosted MCP config
{
"mcpServers": {
"agentpmt": {
"type": "streamable-http",
"url": "https://api.agentpmt.com/mcp",
"headers": {
"Authorization": "Bearer <AGENTPMT_BEARER_TOKEN>",
"x-instance-metadata": "{\"client\":\"generic-mcp\",\"platform\":\"remote\"}"
}
}
}
}View MCP Connection Instructions for more details.
How does an external agent use this tool?
After the external agent is connected to an Agent Group that can use this tool, paste this prompt into the agent:
Agent prompt
Use the AgentPMT-Tool-Search-and-Execution tool. First call action 'get_instructions' so you know how to use the tool search interface. Then call action 'get_schema' with tool_id 694de13fecea2b5619a17bdb ("Data Format Encoder"). After reading the schema and any returned instructions, tell me what this tool can do, we are going to be using it
The agent should fetch the tool schema first, collect the required parameters for your request, and then call the tool through AgentPMT.

