Encoder Ai MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
encode_base64 |
Encode text to Base64. |
decode_base64 |
Decode Base64 to text. |
encode_url |
URL-encode a string. |
encode_html |
HTML-encode special characters. |
to_hex |
Convert text to hexadecimal. |
pip install meok-encoder-ai-mcpAdd to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"encoder-ai": {
"command": "python",
"args": ["-m", "meok_encoder_ai_mcp.server"]
}
}
}from mcp.server.fastmcp import FastMCP
# This server exposes 5 tool(s) via MCP
# See server.py for full implementationMIT © MEOK AI Labs