AgentHotspot MCP Server
🔍 Search 6,000+ MCP connectors directly from your AI agent
Features • Quick Start • Installation • Usage • Contributing
🌟 What is AgentHotspot?
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 Monetization tools for MCP connector creators
- 📊 Analytics dashboard to track usage and performance
This MCP server allows your AI agents to search and discover oss connectors from the AgentHotspot marketplace.
✨ Features
- 🔍 Search Connectors — Query the AgentHotspot catalog with natural language
- 📦 Lightweight — Minimal dependencies, easy to install
- 🔧 MCP Compatible — Works with any MCP-compatible client
📦 Installation
Prerequisites
- Python 3.10+
- An MCP-compatible client (Claude Desktop, OpenAI Agents SDK, custom agents, etc.)
From Source
git clone https://github.com/AgentHotspot/agenthotspot-mcp.git
cd agenthotspot-mcp
# Install dependencies
pip install -r requirements.txt
# Install module
pip install -e .
🔧 Usage
Run the Server Independently
# Run directly
python3 -m agenthotspot_mcp
# Or using the script
python3 src/agenthotspot_mcp/server.py
With Claude Desktop
Add this configuration to your Claude Desktop config file:
macOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"agenthotspot": {
"command": "python3",
"args": ["-m", "agenthotspot_mcp"]
}
}
}
With 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())
🗂️ Project Structure
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
🤝 Contributing
We welcome contributions! See CONTRIBUTING.md for guidelines.
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
📄 License
This project is licensed under the MIT License — see the LICENSE file for details.
🔗 Links
- 🌐 Website: agenthotspot.com
- 📦 Connectors: Browse 6,000+ connectors
- 🐦 Twitter/X: @agenthotspot
- 🐙 GitHub: AgentHotspot
- 📧 Support: support@agenthotspot.com
Built with ❤️ by the AgentHotspot team
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agenthotspot_mcp-1.0.2.tar.gz.
File metadata
- Download URL: agenthotspot_mcp-1.0.2.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1769b02a8f80a1fbc428c080d3b56939501203439cd7542073d78ac2cdde872c
|
|
| MD5 |
b1c5a1c59b009d6e6e1709d7fc36a2fe
|
|
| BLAKE2b-256 |
719491626696b8fa1e06a9b56d37f18581790aa5b81f1a26405e3b0c02c74946
|
File details
Details for the file agenthotspot_mcp-1.0.2-py3-none-any.whl.
File metadata
- Download URL: agenthotspot_mcp-1.0.2-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
797ed91a969a50251362c2936a926143d3fb37fde45624bd262f3ff54d6be1ce
|
|
| MD5 |
7759b31b3d2474a383c3fada418d4064
|
|
| BLAKE2b-256 |
7faedf79f64b2a88f70d1607804b6b0f809d6d18804b682eda9642ecb45ddfd2
|