loading…
Search for a command to run...
loading…
Encoder AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Encoder AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
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-mcp
Add 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 implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"encoder-ai-mcp": {
"command": "npx",
"args": []
}
}
}