├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── mcp_naver ├── __init__.py ├── hosts │ ├── __init__.py │ ├── claude_desktop.py │ └── cursor.py └── server.py ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfldy2850/py-mcp-naver/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfldy2850/py-mcp-naver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfldy2850/py-mcp-naver/HEAD/README.md -------------------------------------------------------------------------------- /mcp_naver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp_naver/hosts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp_naver/hosts/claude_desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfldy2850/py-mcp-naver/HEAD/mcp_naver/hosts/claude_desktop.py -------------------------------------------------------------------------------- /mcp_naver/hosts/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfldy2850/py-mcp-naver/HEAD/mcp_naver/hosts/cursor.py -------------------------------------------------------------------------------- /mcp_naver/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfldy2850/py-mcp-naver/HEAD/mcp_naver/server.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfldy2850/py-mcp-naver/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfldy2850/py-mcp-naver/HEAD/uv.lock --------------------------------------------------------------------------------