Are you the author? Sign in to claim
๐ MCP server to search 6,000+ AI agent MCP connectors from AgentHotspot.com Marketplace
๐ Search 6,000+ MCP connectors directly from your AI agent
Features โข Quick Start โข Installation โข Usage โข Contributing
AgentHotspot a marketplace for AI agent developers. It provides:
This MCP server allows your AI agents to search and discover oss connectors from the AgentHotspot marketplace.
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
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"]
}
}
}
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
We welcome contributions! See CONTRIBUTING.md for guidelines.
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License โ see the LICENSE file for details.
Built with โค๏ธ by the AgentHotspot team
Run analytics queries on ClickHouse โ explore schemas, execute SQL, fetch results
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases