Skip to main content
Glama
whyjp

Encoding MCP Server

by whyjp
setup.py1.94 kB
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from setuptools import setup, find_packages import os # Read README file def read_readme(): with open("README.md", "r", encoding="utf-8") as f: return f.read() # Read requirements.txt file def read_requirements(): with open("requirements.txt", "r", encoding="utf-8") as f: return [line.strip() for line in f if line.strip() and not line.startswith("#")] setup( name="encoding-mcp", version="2.0.1", author="Encoding MCP Team", author_email="whyj.park@gmail.com", description="MCP server for creating and managing UTF-8 with BOM encoded files required for Windows build environments", long_description=read_readme(), long_description_content_type="text/markdown", url="https://github.com/whyjp/encoding_mcp", packages=find_packages(), classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Topic :: Software Development :: Build Tools", "Topic :: Text Processing :: Markup", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Operating System :: OS Independent", ], python_requires=">=3.10", install_requires=read_requirements(), entry_points={ "console_scripts": [ "encoding-mcp=encoding_mcp.server:cli_main", ], }, include_package_data=True, package_data={ "encoding_mcp": ["*.md", "*.txt"], }, keywords="mcp encoding utf8 bom windows build cpp powershell", project_urls={ "Bug Reports": "https://github.com/whyjp/encoding_mcp/issues", "Source": "https://github.com/whyjp/encoding_mcp", }, )

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