Skip to main content
Glama

Encoding MCP Server

by whyjp
mcp-config-samples.json2.04 kB
{ "// Basic usage after PyPI installation": { "mcpServers": { "encoding-mcp": { "command": "python", "args": ["-m", "encoding_mcp"], "env": { "DEBUG": "false" } } } }, "// Developer mode (debug enabled)": { "mcpServers": { "encoding-mcp-dev": { "command": "python", "args": ["-m", "encoding_mcp"], "env": { "DEBUG": "true", "LOG_LEVEL": "DEBUG" } } } }, "// Using virtual environment": { "mcpServers": { "encoding-mcp-venv": { "command": "C:/path/to/venv/Scripts/python.exe", "args": ["-m", "encoding_mcp"], "env": { "DEBUG": "false" } } } }, "// Specify Python version": { "mcpServers": { "encoding-mcp-py311": { "command": "python3.11", "args": ["-m", "encoding_mcp"], "env": { "DEBUG": "false" } } } }, "// Using with multiple MCP servers": { "mcpServers": { "encoding-mcp": { "command": "python", "args": ["-m", "encoding_mcp"], "env": { "DEBUG": "false" } }, "other-mcp-server": { "command": "node", "args": ["other-server.js"] } } }, "// Windows-specific settings": { "mcpServers": { "encoding-mcp-windows": { "command": "python", "args": ["-m", "encoding_mcp"], "env": { "DEBUG": "false", "PYTHONIOENCODING": "utf-8", "PYTHONPATH": "C:/path/to/additional/modules" } } } }, "// macOS/Linux-specific settings": { "mcpServers": { "encoding-mcp-unix": { "command": "python3", "args": ["-m", "encoding_mcp"], "env": { "DEBUG": "false", "LANG": "en_US.UTF-8", "LC_ALL": "en_US.UTF-8" } } } } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/whyjp/encoding_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server