Metadata-Version: 2.4
Name: nacos-mcp-py
Version: 0.1.0
Summary: Nacos MCP Server - 多环境配置读取
Author: dong_tech
License: MIT
Keywords: ai,config,llm,mcp,model-context-protocol,nacos
Requires-Python: >=3.10
Requires-Dist: mcp>=1.0.0
Requires-Dist: nacos-sdk-python<3.0.0,>=2.0.11
Description-Content-Type: text/markdown

# nacos-mcp-py

多环境 Nacos 配置读取 MCP Server。基于 spring-nacos-mcp 的 Nacos HTTP API 封装，
支持标准 Nacos 和阿里云 MSE Nacos 的多环境配置读取。

## 安装

```bash
uv tool install nacos-mcp-py
```

## 配置

```bash
export NACOS_SERVERS='{
  "test": {
    "host": "mse-xxx.mse.aliyuncs.com",
    "port": 8848,
    "namespace": "k8s-test",
    "accessKey": "LTAI...",
    "secretKey": "xfxt..."
  },
  "prod": {
    "host": "mse-yyy.mse.aliyuncs.com",
    "port": 8848,
    "namespace": "k8s-prod",
    "accessKey": "...",
    "secretKey": "..."
  }
}'
```

## 使用

```bash
nacos-mcp-py
```
