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.