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

AgentHotspot MCP Server
๐ 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

Install via CLI
npx mdskills install AgentHotspot/agenthotspot-mcpAgentHotspot MCP Server is a free, open-source AI agent skill. 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
Install AgentHotspot MCP Server with a single command:
npx mdskills install AgentHotspot/agenthotspot-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
AgentHotspot MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.