Name | mcpmarket JSON |
Version |
0.1.6
JSON |
| download |
home_page | None |
Summary | Python MCP server registry and proxy for AI agents |
upload_time | 2025-07-16 14:25:29 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | None |
keywords |
agents
ai
mcp
proxy
registry
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# 🤖 Agentrix
**Python MCP 服务器注册表和代理,专为 AI 智能体设计**
Agentrix 是一个功能强大的 Python 工具,用于管理和代理 Model Context Protocol (MCP) 服务器。它提供了服务器发现、安装、配置和运行的完整解决方案。
## ✨ 特性
- 🔍 **服务器发现**: 从中央注册表搜索和发现 MCP 服务器
- 📦 **一键安装**: 自动安装和配置 MCP 服务器到各种客户端
- 🔧 **多客户端支持**: 支持 Cursor、Claude Desktop、VS Code 等
- 🚀 **代理模式**: 作为 MCP 服务器代理运行
- 🛠️ **多语言支持**: 支持 NPM、PyPI、GitHub、Docker 等多种服务器类型
- 📊 **统计信息**: 提供注册表统计和服务器信息
- 🎨 **美观界面**: 使用 Rich 提供美观的命令行界面
## 🚀 快速开始
### 安装
使用 `uv` 安装 (推荐):
```bash
uv add agentrix
```
或使用 `pip`:
```bash
pip install agentrix
```
### 基本使用
1. **搜索服务器**:
```bash
agentrix search weather
agentrix search --category "productivity" --type npm
```
2. **查看服务器信息**:
```bash
agentrix info @turkyden/weather
```
3. **安装服务器到客户端**:
```bash
# 安装到 Cursor
agentrix install @turkyden/weather --client cursor --key your-api-key
# 安装到 Claude Desktop
agentrix install @smithery-ai/brave-search --client claude --key your-api-key
```
4. **列出已安装的服务器**:
```bash
# 列出所有客户端
agentrix list
# 列出特定客户端的服务器
agentrix list --client cursor
# 列出所有客户端的服务器
agentrix list --all
```
5. **卸载服务器**:
```bash
agentrix uninstall weather --client cursor
```
## 🔧 配置
### 客户端配置
Agentrix 支持以下 MCP 客户端:
| 客户端 | 配置文件路径 | 格式 |
|--------|-------------|------|
| Cursor | `~/.cursor/mcp.json` | JSON |
| Claude Desktop | `~/Library/Application Support/Claude/claude_desktop_config.json` | JSON |
| VS Code | `~/.vscode/settings.json` | JSON |
### 环境变量
可以通过环境变量配置 Agentrix:
```bash
export AGENTRIX_REGISTRY__URL="https://registry.agentrix.dev"
export AGENTRIX_REGISTRY__API_KEY="your-api-key"
export AGENTRIX_LOGGING__LEVEL="DEBUG"
```
### 配置文件
创建 `~/.agentrix/config.toml` 进行自定义配置:
```toml
[registry]
url = "https://registry.agentrix.dev"
api_key = "your-api-key"
cache_ttl = 3600
[logging]
level = "INFO"
console_enabled = true
log_file = "~/.agentrix/logs/agentrix.log"
[proxy]
host = "127.0.0.1"
port = 8080
enable_auth = false
```
## 🏗️ 架构设计
### 代理模式
类似于 @smithery/cli,Agentrix 使用代理模式运行:
1. **客户端配置**: MCP 客户端配置指向 `agentrix run <server-id>`
2. **代理启动**: Agentrix 接收请求并启动目标 MCP 服务器
3. **透明代理**: 所有 MCP 通信透明地转发到目标服务器
```json
{
"mcpServers": {
"weather": {
"command": "uvx",
"args": [
"agentrix",
"run",
"@turkyden/weather",
"--key",
"your-api-key"
]
}
}
}
```
### 调用流程
```
Cursor/Claude Desktop → agentrix run → Target MCP Server
↑ ↓ ↓
←─── MCP Protocol ─────┴──────────────┘
```
## 📚 高级用法
### 运行服务器 (代理模式)
```bash
# 直接运行服务器
agentrix run @turkyden/weather --key your-api-key
# 使用配置字符串
agentrix run @turkyden/weather --config '{"env":{"API_TIMEOUT":"30"}}'
```
### 查看统计信息
```bash
# 注册表统计
agentrix stats
# 可用分类
agentrix categories
# 精选服务器
agentrix featured
```
### 缓存管理
```bash
# 清除缓存
agentrix clear-cache
```
## 🛠️ 开发
### 项目结构
```
src/agentrix/
├── __init__.py # 包初始化
├── cli.py # CLI 界面
├── core/ # 核心功能
│ ├── config.py # 配置管理
│ ├── registry.py # 服务器注册表
│ ├── server_manager.py # 服务器管理
│ └── proxy.py # MCP 代理
├── models/ # 数据模型
│ ├── config.py # 配置模型
│ └── server.py # 服务器模型
└── utils/ # 工具函数
└── logger.py # 日志工具
```
### 开发环境设置
```bash
# 克隆项目
git clone https://github.com/agentrix-ai/agentrix.git
cd agentrix
# 创建虚拟环境
uv venv
source .venv/bin/activate
# 安装依赖
uv sync --all-extras
# 运行测试
pytest
# 代码格式化
black src tests
ruff check src tests --fix
```
### 贡献指南
1. Fork 项目
2. 创建特性分支 (`git checkout -b feature/amazing-feature`)
3. 提交更改 (`git commit -m 'Add amazing feature'`)
4. 推送到分支 (`git push origin feature/amazing-feature`)
5. 开启 Pull Request
## 📋 命令参考
### 全局选项
- `--verbose, -v`: 启用详细日志
- `--debug`: 启用调试模式
- `--config`: 指定配置文件路径
### 命令列表
| 命令 | 描述 | 示例 |
|------|------|------|
| `search [query]` | 搜索服务器 | `agentrix search weather` |
| `info <server-id>` | 显示服务器信息 | `agentrix info @turkyden/weather` |
| `install <server-id>` | 安装服务器 | `agentrix install @turkyden/weather --client cursor` |
| `uninstall <server-name>` | 卸载服务器 | `agentrix uninstall weather --client cursor` |
| `list` | 列出客户端或服务器 | `agentrix list --client cursor` |
| `run <server-id>` | 运行服务器 | `agentrix run @turkyden/weather --key api-key` |
| `featured` | 显示精选服务器 | `agentrix featured` |
| `categories` | 显示分类 | `agentrix categories` |
| `stats` | 显示统计信息 | `agentrix stats` |
| `clear-cache` | 清除缓存 | `agentrix clear-cache` |
| `version` | 显示版本信息 | `agentrix version` |
## 📄 许可证
本项目采用 MIT 许可证 - 查看 [LICENSE](LICENSE) 文件了解详情。
## 🤝 致谢
- 感谢 [Smithery](https://smithery.ai) 提供的设计灵感
- 感谢 [Anthropic](https://anthropic.com) 开发的 Model Context Protocol
- 感谢所有贡献者和用户的支持
## 🔗 相关链接
- [MCP 官方文档](https://modelcontextprotocol.io)
- [Smithery 官网](https://smithery.ai)
- [问题反馈](https://github.com/agentrix-ai/agentrix/issues)
- [讨论区](https://github.com/agentrix-ai/agentrix/discussions)
Raw data
{
"_id": null,
"home_page": null,
"name": "mcpmarket",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "agents, ai, mcp, proxy, registry",
"author": null,
"author_email": "xray918 <xray918@github.com>",
"download_url": "https://files.pythonhosted.org/packages/54/5d/0efc54bfcf819dbbbec6b17d6ba9a03a32256d04cd7b2eed1194b9d70297/mcpmarket-0.1.6.tar.gz",
"platform": null,
"description": "# \ud83e\udd16 Agentrix\n\n**Python MCP \u670d\u52a1\u5668\u6ce8\u518c\u8868\u548c\u4ee3\u7406\uff0c\u4e13\u4e3a AI \u667a\u80fd\u4f53\u8bbe\u8ba1**\n\nAgentrix \u662f\u4e00\u4e2a\u529f\u80fd\u5f3a\u5927\u7684 Python \u5de5\u5177\uff0c\u7528\u4e8e\u7ba1\u7406\u548c\u4ee3\u7406 Model Context Protocol (MCP) \u670d\u52a1\u5668\u3002\u5b83\u63d0\u4f9b\u4e86\u670d\u52a1\u5668\u53d1\u73b0\u3001\u5b89\u88c5\u3001\u914d\u7f6e\u548c\u8fd0\u884c\u7684\u5b8c\u6574\u89e3\u51b3\u65b9\u6848\u3002\n\n## \u2728 \u7279\u6027\n\n- \ud83d\udd0d **\u670d\u52a1\u5668\u53d1\u73b0**: \u4ece\u4e2d\u592e\u6ce8\u518c\u8868\u641c\u7d22\u548c\u53d1\u73b0 MCP \u670d\u52a1\u5668\n- \ud83d\udce6 **\u4e00\u952e\u5b89\u88c5**: \u81ea\u52a8\u5b89\u88c5\u548c\u914d\u7f6e MCP \u670d\u52a1\u5668\u5230\u5404\u79cd\u5ba2\u6237\u7aef\n- \ud83d\udd27 **\u591a\u5ba2\u6237\u7aef\u652f\u6301**: \u652f\u6301 Cursor\u3001Claude Desktop\u3001VS Code \u7b49\n- \ud83d\ude80 **\u4ee3\u7406\u6a21\u5f0f**: \u4f5c\u4e3a MCP \u670d\u52a1\u5668\u4ee3\u7406\u8fd0\u884c\n- \ud83d\udee0\ufe0f **\u591a\u8bed\u8a00\u652f\u6301**: \u652f\u6301 NPM\u3001PyPI\u3001GitHub\u3001Docker \u7b49\u591a\u79cd\u670d\u52a1\u5668\u7c7b\u578b\n- \ud83d\udcca **\u7edf\u8ba1\u4fe1\u606f**: \u63d0\u4f9b\u6ce8\u518c\u8868\u7edf\u8ba1\u548c\u670d\u52a1\u5668\u4fe1\u606f\n- \ud83c\udfa8 **\u7f8e\u89c2\u754c\u9762**: \u4f7f\u7528 Rich \u63d0\u4f9b\u7f8e\u89c2\u7684\u547d\u4ee4\u884c\u754c\u9762\n\n## \ud83d\ude80 \u5feb\u901f\u5f00\u59cb\n\n### \u5b89\u88c5\n\n\u4f7f\u7528 `uv` \u5b89\u88c5 (\u63a8\u8350):\n\n```bash\nuv add agentrix\n```\n\n\u6216\u4f7f\u7528 `pip`:\n\n```bash\npip install agentrix\n```\n\n### \u57fa\u672c\u4f7f\u7528\n\n1. **\u641c\u7d22\u670d\u52a1\u5668**:\n```bash\nagentrix search weather\nagentrix search --category \"productivity\" --type npm\n```\n\n2. **\u67e5\u770b\u670d\u52a1\u5668\u4fe1\u606f**:\n```bash\nagentrix info @turkyden/weather\n```\n\n3. **\u5b89\u88c5\u670d\u52a1\u5668\u5230\u5ba2\u6237\u7aef**:\n```bash\n# \u5b89\u88c5\u5230 Cursor\nagentrix install @turkyden/weather --client cursor --key your-api-key\n\n# \u5b89\u88c5\u5230 Claude Desktop\nagentrix install @smithery-ai/brave-search --client claude --key your-api-key\n```\n\n4. **\u5217\u51fa\u5df2\u5b89\u88c5\u7684\u670d\u52a1\u5668**:\n```bash\n# \u5217\u51fa\u6240\u6709\u5ba2\u6237\u7aef\nagentrix list\n\n# \u5217\u51fa\u7279\u5b9a\u5ba2\u6237\u7aef\u7684\u670d\u52a1\u5668\nagentrix list --client cursor\n\n# \u5217\u51fa\u6240\u6709\u5ba2\u6237\u7aef\u7684\u670d\u52a1\u5668\nagentrix list --all\n```\n\n5. **\u5378\u8f7d\u670d\u52a1\u5668**:\n```bash\nagentrix uninstall weather --client cursor\n```\n\n## \ud83d\udd27 \u914d\u7f6e\n\n### \u5ba2\u6237\u7aef\u914d\u7f6e\n\nAgentrix \u652f\u6301\u4ee5\u4e0b MCP \u5ba2\u6237\u7aef\uff1a\n\n| \u5ba2\u6237\u7aef | \u914d\u7f6e\u6587\u4ef6\u8def\u5f84 | \u683c\u5f0f |\n|--------|-------------|------|\n| Cursor | `~/.cursor/mcp.json` | JSON |\n| Claude Desktop | `~/Library/Application Support/Claude/claude_desktop_config.json` | JSON |\n| VS Code | `~/.vscode/settings.json` | JSON |\n\n### \u73af\u5883\u53d8\u91cf\n\n\u53ef\u4ee5\u901a\u8fc7\u73af\u5883\u53d8\u91cf\u914d\u7f6e Agentrix\uff1a\n\n```bash\nexport AGENTRIX_REGISTRY__URL=\"https://registry.agentrix.dev\"\nexport AGENTRIX_REGISTRY__API_KEY=\"your-api-key\"\nexport AGENTRIX_LOGGING__LEVEL=\"DEBUG\"\n```\n\n### \u914d\u7f6e\u6587\u4ef6\n\n\u521b\u5efa `~/.agentrix/config.toml` \u8fdb\u884c\u81ea\u5b9a\u4e49\u914d\u7f6e\uff1a\n\n```toml\n[registry]\nurl = \"https://registry.agentrix.dev\"\napi_key = \"your-api-key\"\ncache_ttl = 3600\n\n[logging]\nlevel = \"INFO\"\nconsole_enabled = true\nlog_file = \"~/.agentrix/logs/agentrix.log\"\n\n[proxy]\nhost = \"127.0.0.1\"\nport = 8080\nenable_auth = false\n```\n\n## \ud83c\udfd7\ufe0f \u67b6\u6784\u8bbe\u8ba1\n\n### \u4ee3\u7406\u6a21\u5f0f\n\n\u7c7b\u4f3c\u4e8e @smithery/cli\uff0cAgentrix \u4f7f\u7528\u4ee3\u7406\u6a21\u5f0f\u8fd0\u884c\uff1a\n\n1. **\u5ba2\u6237\u7aef\u914d\u7f6e**: MCP \u5ba2\u6237\u7aef\u914d\u7f6e\u6307\u5411 `agentrix run <server-id>`\n2. **\u4ee3\u7406\u542f\u52a8**: Agentrix \u63a5\u6536\u8bf7\u6c42\u5e76\u542f\u52a8\u76ee\u6807 MCP \u670d\u52a1\u5668\n3. **\u900f\u660e\u4ee3\u7406**: \u6240\u6709 MCP \u901a\u4fe1\u900f\u660e\u5730\u8f6c\u53d1\u5230\u76ee\u6807\u670d\u52a1\u5668\n\n```json\n{\n \"mcpServers\": {\n \"weather\": {\n \"command\": \"uvx\",\n \"args\": [\n \"agentrix\",\n \"run\", \n \"@turkyden/weather\",\n \"--key\",\n \"your-api-key\"\n ]\n }\n }\n}\n```\n\n### \u8c03\u7528\u6d41\u7a0b\n\n```\nCursor/Claude Desktop \u2192 agentrix run \u2192 Target MCP Server\n \u2191 \u2193 \u2193\n \u2190\u2500\u2500\u2500 MCP Protocol \u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n```\n\n## \ud83d\udcda \u9ad8\u7ea7\u7528\u6cd5\n\n### \u8fd0\u884c\u670d\u52a1\u5668 (\u4ee3\u7406\u6a21\u5f0f)\n\n```bash\n# \u76f4\u63a5\u8fd0\u884c\u670d\u52a1\u5668\nagentrix run @turkyden/weather --key your-api-key\n\n# \u4f7f\u7528\u914d\u7f6e\u5b57\u7b26\u4e32\nagentrix run @turkyden/weather --config '{\"env\":{\"API_TIMEOUT\":\"30\"}}'\n```\n\n### \u67e5\u770b\u7edf\u8ba1\u4fe1\u606f\n\n```bash\n# \u6ce8\u518c\u8868\u7edf\u8ba1\nagentrix stats\n\n# \u53ef\u7528\u5206\u7c7b\nagentrix categories\n\n# \u7cbe\u9009\u670d\u52a1\u5668\nagentrix featured\n```\n\n### \u7f13\u5b58\u7ba1\u7406\n\n```bash\n# \u6e05\u9664\u7f13\u5b58\nagentrix clear-cache\n```\n\n## \ud83d\udee0\ufe0f \u5f00\u53d1\n\n### \u9879\u76ee\u7ed3\u6784\n\n```\nsrc/agentrix/\n\u251c\u2500\u2500 __init__.py # \u5305\u521d\u59cb\u5316\n\u251c\u2500\u2500 cli.py # CLI \u754c\u9762\n\u251c\u2500\u2500 core/ # \u6838\u5fc3\u529f\u80fd\n\u2502 \u251c\u2500\u2500 config.py # \u914d\u7f6e\u7ba1\u7406\n\u2502 \u251c\u2500\u2500 registry.py # \u670d\u52a1\u5668\u6ce8\u518c\u8868\n\u2502 \u251c\u2500\u2500 server_manager.py # \u670d\u52a1\u5668\u7ba1\u7406\n\u2502 \u2514\u2500\u2500 proxy.py # MCP \u4ee3\u7406\n\u251c\u2500\u2500 models/ # \u6570\u636e\u6a21\u578b\n\u2502 \u251c\u2500\u2500 config.py # \u914d\u7f6e\u6a21\u578b\n\u2502 \u2514\u2500\u2500 server.py # \u670d\u52a1\u5668\u6a21\u578b\n\u2514\u2500\u2500 utils/ # \u5de5\u5177\u51fd\u6570\n \u2514\u2500\u2500 logger.py # \u65e5\u5fd7\u5de5\u5177\n```\n\n### \u5f00\u53d1\u73af\u5883\u8bbe\u7f6e\n\n```bash\n# \u514b\u9686\u9879\u76ee\ngit clone https://github.com/agentrix-ai/agentrix.git\ncd agentrix\n\n# \u521b\u5efa\u865a\u62df\u73af\u5883\nuv venv\nsource .venv/bin/activate\n\n# \u5b89\u88c5\u4f9d\u8d56\nuv sync --all-extras\n\n# \u8fd0\u884c\u6d4b\u8bd5\npytest\n\n# \u4ee3\u7801\u683c\u5f0f\u5316\nblack src tests\nruff check src tests --fix\n```\n\n### \u8d21\u732e\u6307\u5357\n\n1. Fork \u9879\u76ee\n2. \u521b\u5efa\u7279\u6027\u5206\u652f (`git checkout -b feature/amazing-feature`)\n3. \u63d0\u4ea4\u66f4\u6539 (`git commit -m 'Add amazing feature'`)\n4. \u63a8\u9001\u5230\u5206\u652f (`git push origin feature/amazing-feature`)\n5. \u5f00\u542f Pull Request\n\n## \ud83d\udccb \u547d\u4ee4\u53c2\u8003\n\n### \u5168\u5c40\u9009\u9879\n\n- `--verbose, -v`: \u542f\u7528\u8be6\u7ec6\u65e5\u5fd7\n- `--debug`: \u542f\u7528\u8c03\u8bd5\u6a21\u5f0f\n- `--config`: \u6307\u5b9a\u914d\u7f6e\u6587\u4ef6\u8def\u5f84\n\n### \u547d\u4ee4\u5217\u8868\n\n| \u547d\u4ee4 | \u63cf\u8ff0 | \u793a\u4f8b |\n|------|------|------|\n| `search [query]` | \u641c\u7d22\u670d\u52a1\u5668 | `agentrix search weather` |\n| `info <server-id>` | \u663e\u793a\u670d\u52a1\u5668\u4fe1\u606f | `agentrix info @turkyden/weather` |\n| `install <server-id>` | \u5b89\u88c5\u670d\u52a1\u5668 | `agentrix install @turkyden/weather --client cursor` |\n| `uninstall <server-name>` | \u5378\u8f7d\u670d\u52a1\u5668 | `agentrix uninstall weather --client cursor` |\n| `list` | \u5217\u51fa\u5ba2\u6237\u7aef\u6216\u670d\u52a1\u5668 | `agentrix list --client cursor` |\n| `run <server-id>` | \u8fd0\u884c\u670d\u52a1\u5668 | `agentrix run @turkyden/weather --key api-key` |\n| `featured` | \u663e\u793a\u7cbe\u9009\u670d\u52a1\u5668 | `agentrix featured` |\n| `categories` | \u663e\u793a\u5206\u7c7b | `agentrix categories` |\n| `stats` | \u663e\u793a\u7edf\u8ba1\u4fe1\u606f | `agentrix stats` |\n| `clear-cache` | \u6e05\u9664\u7f13\u5b58 | `agentrix clear-cache` |\n| `version` | \u663e\u793a\u7248\u672c\u4fe1\u606f | `agentrix version` |\n\n## \ud83d\udcc4 \u8bb8\u53ef\u8bc1\n\n\u672c\u9879\u76ee\u91c7\u7528 MIT \u8bb8\u53ef\u8bc1 - \u67e5\u770b [LICENSE](LICENSE) \u6587\u4ef6\u4e86\u89e3\u8be6\u60c5\u3002\n\n## \ud83e\udd1d \u81f4\u8c22\n\n- \u611f\u8c22 [Smithery](https://smithery.ai) \u63d0\u4f9b\u7684\u8bbe\u8ba1\u7075\u611f\n- \u611f\u8c22 [Anthropic](https://anthropic.com) \u5f00\u53d1\u7684 Model Context Protocol\n- \u611f\u8c22\u6240\u6709\u8d21\u732e\u8005\u548c\u7528\u6237\u7684\u652f\u6301\n\n## \ud83d\udd17 \u76f8\u5173\u94fe\u63a5\n\n- [MCP \u5b98\u65b9\u6587\u6863](https://modelcontextprotocol.io)\n- [Smithery \u5b98\u7f51](https://smithery.ai)\n- [\u95ee\u9898\u53cd\u9988](https://github.com/agentrix-ai/agentrix/issues)\n- [\u8ba8\u8bba\u533a](https://github.com/agentrix-ai/agentrix/discussions) ",
"bugtrack_url": null,
"license": null,
"summary": "Python MCP server registry and proxy for AI agents",
"version": "0.1.6",
"project_urls": {
"Documentation": "https://github.com/xray918/agentrix",
"Issues": "https://github.com/xray918/agentrix/issues",
"Repository": "https://github.com/xray918/agentrix",
"Source": "https://github.com/xray918/agentrix"
},
"split_keywords": [
"agents",
" ai",
" mcp",
" proxy",
" registry"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "411548e16bdbef711cabb73c715f6dc823f7579ad4d311fa751326f82985f0f5",
"md5": "1d703d3f727abd843f058867b43b4adc",
"sha256": "1d296f76ec118645f50067e9cf26b071e659c9abb04fe542d41b3953b5bc96bb"
},
"downloads": -1,
"filename": "mcpmarket-0.1.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1d703d3f727abd843f058867b43b4adc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 40328,
"upload_time": "2025-07-16T14:25:28",
"upload_time_iso_8601": "2025-07-16T14:25:28.260477Z",
"url": "https://files.pythonhosted.org/packages/41/15/48e16bdbef711cabb73c715f6dc823f7579ad4d311fa751326f82985f0f5/mcpmarket-0.1.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "545d0efc54bfcf819dbbbec6b17d6ba9a03a32256d04cd7b2eed1194b9d70297",
"md5": "f6ba12aefdf616a400b9e52072053768",
"sha256": "75efb9705a66fb9112f0fa4e4122982be41b48b957d1d247d17a1d34f25e468b"
},
"downloads": -1,
"filename": "mcpmarket-0.1.6.tar.gz",
"has_sig": false,
"md5_digest": "f6ba12aefdf616a400b9e52072053768",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 81002,
"upload_time": "2025-07-16T14:25:29",
"upload_time_iso_8601": "2025-07-16T14:25:29.600135Z",
"url": "https://files.pythonhosted.org/packages/54/5d/0efc54bfcf819dbbbec6b17d6ba9a03a32256d04cd7b2eed1194b9d70297/mcpmarket-0.1.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-16 14:25:29",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "xray918",
"github_project": "agentrix",
"github_not_found": true,
"lcname": "mcpmarket"
}