by AI-Agent-Hub
ai-agent-marketplace-index-mcp is a Multi-Cloud Platform (MCP) server that functions as a search engine and monitoring tool for over 5000 AI agents and tools. It allows users to discover AI agents by keywords or categories and track their web traffic performance.
ai-agent-marketplace-index-mcp is an MCP (Multi-Cloud Platform) server developed by DeepNLP. It serves as a search engine and monitoring tool for the AI Agent Marketplace Index, which contains over 5000 AI agents and tools across various categories. It allows users to search for AI agents by keywords or categories and monitors their web traffic performance.
To use ai-agent-marketplace-index-mcp, you need Python 3.10 or higher, a Microsoft Bing Search API key, and an MCP-compatible client like Claude Desktop or Cursor.
Installation:
uv venv
, source .venv/bin/activate
, and uv pip install -e .
Running the server:
cd ./ai-agent-marketplace-index-mcp/src/ai-agent-marketplace-index
then mcp dev server.py
uv run -m ai-agent-marketplace-index-mcp
Configuring with Claude for Desktop: Add the provided JSON configuration to your Claude Desktop configuration file, adjusting the absolute path to the project.
Available Tool:
search_ai_agent(q: str, limit: int = 100, timeout: int = 5)
: General search of AI Agents for information, websites, content, and web traffic statistics.Integrating with LLMs (e.g., Claude):
Use the mcp_marketplace
library to search for the MCP server and list its tools, then integrate these tools into your LLM's message creation process.
search_ai_agent
tool to enhance their capabilities by finding and utilizing specific AI agents.Q: What are the system requirements? A: Python 3.10 or higher, a Microsoft Bing Search API key, and an MCP-compatible client (e.g., Claude Desktop, Cursor).
Q: How can I integrate this with my LLM?
A: You can use the mcp_marketplace
library to search for the server and list its tools, then pass these tools to your LLM for selection and usage.
Q: Can I list my own AI agent on the marketplace? A: Yes, the project provides an API for listing your AI agents to the AI Agent Marketplace and Index.
MCP Server for AI Agent Marketplace Index from DeepNLP, , allowing AI assistants to searches available AI agents Navigation Page function, tools or use cases by "keywords" or "category". such as find all the "AI coding agents", "GUI AI Agents", "Mobile Use Agent", "Desktop Use Agent", etc.
Open Project https://github.com/AI-Agent-Hub/mcp-marketplace
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -e .
uv run -m ai-agent-marketplace-index-mcp
cd ./ai-agent-marketplace-index-mcp/src/ai-agent-marketplace-index
mcp dev server.py
Add the following to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json
on macOS or %APPDATA%\Claude\claude_desktop_config.json
on Windows):
{
"mcpServers": {
"ai-agent-marketplace-index-mcp": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/ai-agent-marketplace-index-mcp/src/ai-agent-marketplace-index",
"run",
"server.py"
]
}
}
}
General search of AI Agents for information, websites, content and metric statistic of web traffic, etc.
search_ai_agent(q: str, limit: int = 100, timeout: int = 5)
Example: Search Server and Tools
import mcp_marketplace as mcpm
mcpm.set_endpoint("deepnlp") # choose various open mcp marketplace endpoint
result_q = mcpm.search(id="ai-agent-marketplace-index-mcp", mode="dict", page_id=0, count_per_page=100)
result_id = mcpm.search(id="ai-agent-hub/ai-agent-marketplace-index-mcp", mode="dict", page_id=0, count_per_page=100)
tools = mcpm.list_tools(id="ai-agent-hub/ai-agent-marketplace-index-mcp")
Example: Integrate with LLM e.g. Claude
import anthropic
client = anthropic.Anthropic()
# Step 1. search mcp by query/id to find this mcp
# Step 2. Calling LLM for Better Usage and MCP Selection
response = client.messages.create(
model="claude-3-7-sonnet-20250219", max_tokens=1024, tools=tools, messages=[]
)
print(response)
## install remote servers if tools from this mcp are chosen
Please log in to share your review and rating for this MCP.
Discover more MCP servers with similar functionality and use cases
by exa-labs
Provides a Model Context Protocol server that enables AI assistants to perform real‑time web searches via the Exa AI Search API, with optional company research, LinkedIn lookup, and deep research workflows.
by perplexityai
Provides real-time web search capabilities to AI models via the Perplexity Sonar API, enabling seamless integration within the Model Context Protocol ecosystem.
by brightdata
Provides real‑time web access, bypasses geo‑restrictions, handles bot detection, and offers browser automation for LLMs and AI agents via the Model Context Protocol.
by mamertofabian
mcp-everything-search is a cross-platform MCP server that provides fast and flexible file searching capabilities. It leverages native system tools to efficiently locate files and folders across Windows, macOS, and Linux.
by kagisearch
Provides web search and video summarization capabilities via the Model Context Protocol, integrating with Claude and other AI tools.
by apify
mcp-server-rag-web-browser is an MCP server for the RAG Web Browser Actor, enabling AI agents and LLMs to perform web searches and extract information from web pages.
by fatwang2
Provides web and news search, URL crawling, sitemap extraction, reasoning, and trending tools via Search1API, exposed as an MCP server for seamless integration with clients such as LibreChat, Claude Desktop, Cursor, and other MCP‑compatible tools.
by meilisearch
Enables LLMs to manage Meilisearch indexes, perform searches, and handle documents through natural‑language conversations via a Model Context Protocol server.
by ihor-sokoliuk
mcp-searxng is an MCP (Model Context Protocol) server that integrates with SearXNG to provide web search capabilities for AI models and applications.