loading…
Search for a command to run...
loading…
Search, integrate and monetize MCP connectors on the AgentHotspot MCP marketplace
Search, integrate and monetize MCP connectors on the AgentHotspot MCP 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
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"agenthotspot": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.