Metadata-Version: 2.4
Name: my-mcp-servers
Version: 0.1.5
Summary: Model Context Protocol servers for PostgreSQL and Alibaba Cloud Bailian image generation
Project-URL: Homepage, https://github.com/yidasanqian/my-mcp-servers
Project-URL: Repository, https://github.com/yidasanqian/my-mcp-servers
Project-URL: Issues, https://github.com/yidasanqian/my-mcp-servers/issues
Author-email: yidasanqian <yidasanqian@gmail.com>
License: MIT
License-File: LICENSE
Keywords: alibaba-cloud,bailian,image-generation,mcp,model-context-protocol,postgresql
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp[cli]>=1.12.0
Requires-Dist: psycopg2-binary>=2.9.10
Description-Content-Type: text/markdown

# my-mcp-servers

Model Context Protocol Servers

## 项目介绍

本项目包含多个Model Context Protocol (MCP)服务器实现，用于提供各种工具和服务。

## 服务器列表

### 1. PostgreSQL MCP服务器

提供与PostgreSQL数据库交互的工具和资源。

### 2. 阿里云百炼生图API MCP服务器

支持两种部署模式：

### 个人使用（推荐）

```json
{
  "mcpServers": {
    "bailian-image-gen": {
      "command": "uvx",
      "args": [
        "--from",
        "my-mcp-servers",
        "bailian-mcp-server"
      ],
      "env": {
        "DASHSCOPE_API_KEY": "sk-your-api-key"
      }
    }
  }
}
```

### 团队部署

1. 部署服务器：

```bash
docker-compose up -d
```

1. cherry studio配置：

```json
{
  "mcpServers": {
    "bailian-image-gen": {
      "type": "streamableHttp",
      "baseUrl": "http://localhost:8000/mcp",
      "headers": {
        "Authorization": "Bearer ${DASHSCOPE_API_KEY}"
      }
    }
  }
}
```

## 开发说明

### 环境配置

```bash
# 使用uv安装依赖
uv sync
```
