AgentHotspot MCP Server
🔍 Search 6,000+ MCP connectors directly from your AI agent
Features • Quick Start • Installation • Usage • Contributing
agenthotspot.com
______________________________________________________________________
🌟 什么是AgentHotspot?
代理热点 AI代理开发人员的市场。它提供:
- 🔌 6000多个精心策划的MCP连接器 为代理构建者准备好连接和集成
- 🚀 一键集成 使用Claude Desktop、OpenAI代理、n8n等
- 💰 即时货币化工具 适用于MCP连接器创建者
- 📊 分析仪表板 跟踪使用情况和性能
此MCP服务器允许您的AI代理 搜索和发现 来自AgentHotspot市场的oss连接器。
______________________________________________________________________
✨ 特性
- 🔍 搜索连接器 --用自然语言查询AgentHotspot目录
- 📦 轻量级 --依赖性最小,易于安装
- 🔧 MCP兼容 --适用于任何MCP兼容客户端
______________________________________________________________________
📦 安装
先决条件
- Python 3.10+
- MCP兼容客户端(Claude Desktop、OpenAI代理SDK、自定义代理等)
来源
git clone https://github.com/AgentHotspot/agenthotspot-mcp.git
cd agenthotspot-mcp
# Install dependencies
pip install -r requirements.txt
# Install module
pip install -e .______________________________________________________________________
🔧 用法
独立运行服务器
# Run directly
python3 -m agenthotspot_mcp
# Or using the script
python3 src/agenthotspot_mcp/server.py使用克劳德桌面
将此配置添加到您的Claude Desktop配置文件中:
macOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json\ 窗户: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"agenthotspot": {
"command": "python3",
"args": ["-m", "agenthotspot_mcp"]
}
}
}与LangChain合作
import asyncio
from langchain_mcp_adapters.client import MultiServerMCPClient
async def main():
client = MultiServerMCPClient({
"agenthotspot": {
"transport": "stdio",
"command": "python3",
"args": ["-m", "agenthotspot_mcp"],
}
})
tools = await client.get_tools()
print(tools)
# Remaining code ...
# (see examples/langchain_example.py for full agent example)
asyncio.run(main())______________________________________________________________________
🗂️ 项目结构
agenthotspot-mcp/
├── src/
│ └── agenthotspot_mcp/
│ ├── __init__.py # Package exports
│ ├── __main__.py # Entry point
│ └── server.py # MCP server implementation
├── examples/
│ ├── claude_config.json # Claude Desktop config example
│ └── langchain_example.py # Python langchain usage example
├── pyproject.toml # Package configuration
├── requirements.txt # Dependencies
├── LICENSE # MIT License
├── CONTRIBUTING.md # Contribution guidelines
└── README.md # This file______________________________________________________________________
🤝 贡献
我们欢迎捐款!看 贡献.md 作为指导方针。
- 克隆该仓库
- 创建要素分支(
git checkout -b feature/amazing-feature) - 提交您的更改(
git commit -m 'Add amazing feature') - 推到分支(
git push origin feature/amazing-feature) - 打开拉取请求
______________________________________________________________________
📄 许可证
该项目根据MIT许可证获得许可——请参阅 许可证 文件以获取详细信息。
______________________________________________________________________
🔗 链接
- 🌐 网站: Agenhotspot.com
- 📦 连接器: 浏览6000多个连接器
- 🐦 推特/X: @代理热点
- 🐙 github: 代理热点
- 📧 技术支持: support@agenthotspot.com
______________________________________________________________________
Built with ❤️ by the AgentHotspot team

