AgentHotspot MCP Server ๐ Search 6,000+ MCP connectors directly from your AI agent Features โข Quick Start โข Installation โข Contributing agenthotspot.com AgentHotspot a marketplace for AI agent developers. It provides: - ๐ 6,000+ curated MCP connectors ready to connect and integrate for agent builders - ๐ One-click integration with Claude Desktop, OpenAI Agents, n8n, and more - ๐ฐ Instant Moneti
Add this skill
npx mdskills install AgentHotspot/agenthotspot-mcpWell-documented MCP server enabling agent search of 6,000+ connectors with clear setup
1<p align="center">2 <a href="https://agenthotspot.com">3 <img src="https://agenthotspot.com/AHSLogo.png" alt="AgentHotspot Logo" width="200">4 </a>5</p>67<h1 align="center">AgentHotspot MCP Server</h1>89<p align="center">10 <strong>๐ Search 6,000+ MCP connectors directly from your AI agent</strong>11</p>1213<p align="center">14 <a href="https://agenthotspot.com"><img src="https://img.shields.io/badge/AgentHotspot-Marketplace-blue?style=for-the-badge" alt="AgentHotspot"></a>15 <a href="https://github.com/AgentHotspot/agenthotspot-mcp/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge" alt="License"></a>16 <img src="https://img.shields.io/badge/Python-3.10+-blue?style=for-the-badge&logo=python&logoColor=white" alt="Python">17 <a href="https://modelcontextprotocol.io/"><img src="https://img.shields.io/badge/MCP-Compatible-purple?style=for-the-badge" alt="MCP"></a>18</p>1920<p align="center">21 <a href="#-features">Features</a> โข22 <a href="#-quick-start">Quick Start</a> โข23 <a href="#-installation">Installation</a> โข24 <a href="#-usage">Usage</a> โข25 <a href="#-contributing">Contributing</a>26</p>2728<p align="center">29 <a href="https://agenthotspot.com">agenthotspot.com</a>30</p>3132---3334## ๐ What is AgentHotspot?3536[**AgentHotspot**](https://agenthotspot.com) a marketplace for AI agent developers. It provides:3738- ๐ **6,000+ curated MCP connectors** ready to connect and integrate for agent builders39- ๐ **One-click integration** with Claude Desktop, OpenAI Agents, n8n, and more40- ๐ฐ **Instant Monetization tools** for MCP connector creators41- ๐ **Analytics dashboard** to track usage and performance4243This MCP server allows your AI agents to **search and discover** oss connectors from the AgentHotspot marketplace.4445---4647## โจ Features4849- ๐ **Search Connectors** โ Query the AgentHotspot catalog with natural language50- ๐ฆ **Lightweight** โ Minimal dependencies, easy to install51- ๐ง **MCP Compatible** โ Works with any MCP-compatible client5253---545556## ๐ฆ Installation5758### Prerequisites5960- Python 3.10+61- An MCP-compatible client (Claude Desktop, OpenAI Agents SDK, custom agents, etc.)6263### From Source6465```bash66git clone https://github.com/AgentHotspot/agenthotspot-mcp.git67cd agenthotspot-mcp6869# Install dependencies70pip install -r requirements.txt7172# Install module73pip install -e .74```7576---7778## ๐ง Usage7980### Run the Server Independently8182```bash83# Run directly84python3 -m agenthotspot_mcp8586# Or using the script87python3 src/agenthotspot_mcp/server.py88```8990### With Claude Desktop9192Add this configuration to your Claude Desktop config file:9394**macOS:** `~/Library/Application\ Support/Claude/claude_desktop_config.json`95**Windows:** `%APPDATA%\Claude\claude_desktop_config.json`9697```json98{99 "mcpServers": {100 "agenthotspot": {101 "command": "python3",102 "args": ["-m", "agenthotspot_mcp"]103 }104 }105}106```107108### With LangChain109110```python111import asyncio112from langchain_mcp_adapters.client import MultiServerMCPClient113114async def main():115 client = MultiServerMCPClient({116 "agenthotspot": {117 "transport": "stdio",118 "command": "python3",119 "args": ["-m", "agenthotspot_mcp"],120 }121 })122 tools = await client.get_tools()123 print(tools)124125 # Remaining code ...126 # (see examples/langchain_example.py for full agent example)127128asyncio.run(main())129```130131132---133134## ๐๏ธ Project Structure135136```137agenthotspot-mcp/138โโโ src/139โ โโโ agenthotspot_mcp/140โ โโโ __init__.py # Package exports141โ โโโ __main__.py # Entry point142โ โโโ server.py # MCP server implementation143โโโ examples/144โ โโโ claude_config.json # Claude Desktop config example145โ โโโ langchain_example.py # Python langchain usage example146โโโ pyproject.toml # Package configuration147โโโ requirements.txt # Dependencies148โโโ LICENSE # MIT License149โโโ CONTRIBUTING.md # Contribution guidelines150โโโ README.md # This file151```152153---154155## ๐ค Contributing156157We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.1581591. Fork the repository1602. Create a feature branch (`git checkout -b feature/amazing-feature`)1613. Commit your changes (`git commit -m 'Add amazing feature'`)1624. Push to the branch (`git push origin feature/amazing-feature`)1635. Open a Pull Request164165---166167## ๐ License168169This project is licensed under the MIT License โ see the [LICENSE](LICENSE) file for details.170171---172173## ๐ Links174175- ๐ **Website:** [agenthotspot.com](https://agenthotspot.com)176- ๐ฆ **Connectors:** [Browse 6,000+ connectors](https://agenthotspot.com/connectors)177- ๐ฆ **Twitter/X:** [@agenthotspot](https://x.com/agenthotspot)178- ๐ **GitHub:** [AgentHotspot](https://github.com/AgentHotspot)179- ๐ง **Support:** [support@agenthotspot.com](mailto:support@agenthotspot.com)180181---182183<p align="center">184 <strong>Built with โค๏ธ by the <a href="https://agenthotspot.com">AgentHotspot</a> team</strong>185</p>186187<p align="center">188 <a href="https://agenthotspot.com">189 <img src="https://img.shields.io/badge/Discover_MCP_Connectors-AgentHotspot-blue?style=for-the-badge" alt="Discover Connectors">190 </a>191</p>192193<!-- mcp-name: io.github.agenthotspot/agenthotspot-mcp -->
Full transparency โ inspect the skill content before installing.