CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
agenthotspot avatar

AgentHotspot

agenthotspot/agenthotspot-mcp
2STDIOregistry active
Summary

This is a meta-connector that searches the AgentHotspot marketplace catalog of 6,000+ MCP servers directly from your AI agent. Instead of browsing a website, you can ask your agent to find connectors for specific APIs or use cases, and it queries the AgentHotspot directory to return results. It's useful when you're building an agent workflow and need to quickly discover what MCP integrations exist for a particular service or data source. The server itself is lightweight Python with stdio transport, so it drops into Claude Desktop or LangChain setups easily. Think of it as programmatic access to a connector search engine rather than a connector to any specific external service.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

AgentHotspot Logo

AgentHotspot MCP Server

🔍 Search 6,000+ MCP connectors directly from your AI agent

AgentHotspot License Python MCP

Features • Quick Start • Installation • Usage • Contributing

agenthotspot.com


🌟 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.

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. 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

Discover Connectors

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
AI & LLM ToolsSearch & Web Crawling
Registryactive
Packageagenthotspot-mcp
TransportSTDIO
UpdatedJan 21, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
agentled avatar
Mcp Server

agentled/mcp-server

Intelligent AI workflow orchestration with long-term memory, 100+ integrations, and unified credits.
2
cueapi avatar
Mcp

ai.cueapi/mcp

Schedule agent work and report write-once outcomes via CueAPI from any MCP host.
2
aidemd-mcp avatar
Server

aidemd-mcp/server

MCP server that teaches any AI agent the AIDE methodology via progressive disclosure
2
aliceappai avatar
Mcp Server Alice

aliceappai/mcp-server-alice

Secure audio transcription meets AI. Connect Alice recordings to Claude, ChatGPT, Gemini, and more.
2
annibale-x avatar
Mcp Memento

annibale-x/mcp-memento

An MCP server that provides persistent memory and context management across sessions
2
archetypal-ai avatar
Archetypal Ai

archetypal-ai/archetypal-ai

Persistent memory for AI agents. recall, remember, checkpoint — soul preservation.
2