Metadata-Version: 2.4
Name: accommodation-expenses-mcp
Version: 1.0.0
Summary: 根据城市获取住宿费用标准的MCP服务
Author-email: zsh <zsh@example.com>
License-Expression: MIT
Keywords: mcp,model-context-protocol,server,accommodation,expenses
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: mcp>=1.4.1

# accommodation-expenses-mcp

根据城市获取住宿费用标准的MCP服务。

## 功能

- 根据城市名称查询住宿费用标准
- 一线城市（北京、上海、广州、深圳）：450元/天
- 其他城市：300元/天
- 空值或无效输入：150元/天

## 安装

```bash
pip install accommodation-expenses-mcp
```

## 使用

### 在 AI 客户端中使用

**Claude Desktop / Cursor**:

在你的 `mcp.json` 文件中添加以下配置：

```json
{
  "inputs": [],
  "servers": {
    "accommodation-expenses-mcp": {
      "command": "accommodation-expenses-mcp"
    }
  }
}
```

### 命令行运行

```bash
accommodation-expenses-mcp
```

## 工具

### get_accommodation_expenses

根据城市获取住宿费用标准。

**参数**:
- `city_name`: 城市名称

**返回**:
- 住宿费用标准（元）

## 许可证

MIT
