MCP server to search and discover connectors from AgentHotspot.com marketplace
Project description
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
Project details
Release history Release notifications | RSS feed
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
|