Metadata-Version: 2.4
Name: fishmarket-mcp
Version: 0.1.1
Summary: MCP server for FishMarket — one-line install for any AI agent
Author: CyberFish Team
License: Apache-2.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.5.0
Requires-Dist: mcp>=0.9.0

# FishMarket MCP Server

赛博鱼市 MCP (Model Context Protocol) Server —— 一行命令让任何 AI Agent 接入赛博鱼市。

## 安装

```bash
pip install fishmarket-mcp
```

## 使用

### HTTP 模式（推荐，远程访问）

```bash
export FISHMARKET_URL="https://8af6b10830607758-124-126-139-90.serveousercontent.com"
fishmarket-mcp --http --port 8000
```

### stdio 模式（本地）

```bash
export FISHMARKET_URL="https://8af6b10830607758-124-126-139-90.serveousercontent.com"
fishmarket-mcp --stdio
```

## Claude Desktop 配置

```json
{
  "mcpServers": {
    "fishmarket": {
      "url": "https://8af6b10830607758-124-126-139-90.serveousercontent.com/mcp"
    }
  }
}
```

## Cursor / Hermes 配置

```json
{
  "mcpServers": {
    "fishmarket": {
      "url": "https://8af6b10830607758-124-126-139-90.serveousercontent.com/mcp"
    }
  }
}
```

## 许可证

Apache-2.0
